主题:  怎么在Dreamwear中制作圆角边框呢?方法越简单越好!

智慧当当

职务:普通成员
等级:2
金币:13.0
发贴:412
#12006/7/5 17:07:39
如下图:

图片如下:



hotklk

职务:普通成员
等级:1
金币:0.0
发贴:3
#22006/7/24 15:40:12
图片



xialfeihong

职务:普通成员
等级:1
金币:0.0
发贴:35
#32006/7/30 8:22:13
你试着把这些代码粘到dreamweaver中,看对你有没有用
<fieldset>
<legend accesskey="F" align="left">这个圆角不是用Css</legend>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td align="center" height="40">&nbsp;</td>
</tr>
</table>
<p>&nbsp;</p>
</fieldset>


还有这种形式的,是用CSS实现的
<html>
<head>
<title>css圆角效果</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<style type="text/css">
div.RoundedCorner{background: #9BD1FA}
b.rtop, b.rbottom{display:block;background: #FFF}
b.rtop b, b.rbottom b{display:block;height: 1px;overflow: hidden; background: #9BD1FA}
b.r1{margin: 0 5px}
b.r2{margin: 0 3px}
b.r3{margin: 0 2px}
b.rtop b.r4, b.rbottom b.r4{margin: 0 1px;height: 2px}
</style>
</head>
<body>
<div class="RoundedCorner">
<b class="rtop"><b class="r1"></b><b class="r2"></b><b class="r3"></b><b class="r4"></b></b>
<br>无图片实现圆角框<br><br>
<b class="rbottom"><b class="r4"></b><b class="r3"></b><b class="r2"></b><b class="r1"></b></b>
</div>
</body>
</html>