如何将网页中的表格的拐角变得圆滑

来源:百度知道 编辑:UC知道 时间:2024/05/12 01:08:21
我在浏览网页的时候看到很多网页中表格的拐角都做成圆弧线,很美观.请高手指教是怎么做出来的啊.谢谢

一般圆角是用图片做的,给你两个纯代码的:
1.用fieldset做:
<fieldset style="height:300px;">
<legend>另类</legend>
圆角表格
</fieldset>
2.用vml做:
<html xmlns:v>
<style>
v\:*{behavior:url(#default#VML)}
</style>
<body>
<v:RoundRect style="position:relative;width:150;height:240px">
<v:shadow on="T" type="single" color="#b3b3b3" offset="3px,3px"/>
<v:TextBox style="font-size:10.2pt;">VML圆角表格</v:TextBox>
</v:RoundRect>
</body>
</html>

http://www.jpz.org.ru/html/27/5794.html
http://www.ifc.dicp.ac.cn/html/table/table3-2.htm
这2篇文章 专门介绍制作圆角表格的 应该能满足你要