网页总的圆角背景框是怎么做?
发布网友
发布时间:2022-04-24 18:04
我来回答
共4个回答
热心网友
时间:2023-10-29 23:14
一般会这样做:
先把一个圆角背景框,把它分为上中下三份,上面和下面那个截好的图要正好露出圆的角。(在fireworks中)
打开dreamweaver,插入一个3行1列,边框为0,填充为0的表格,第一行把截好的上图插入进去。
第二行则是把中间那幅图作为背景。
第三行把截好的下图插入进去。
热心网友
时间:2023-10-29 23:14
圆角背景框 实际就是4个小图片 制作成圆角型的 弄在4个角就行了
热心网友
时间:2023-10-29 23:15
你试着把这些代码粘到dreamweaver中,看对你有没有用
<fieldset>
<legend accesskey="F" align="left">这个圆角不是用Css</legend>
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td align="center" height="40"> </td>
</tr>
</table>
<p> </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>
热心网友
时间:2023-10-29 23:16
不知道