龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > div+css/html >

表格Table圆角效果纯CSS无图实现

时间:2009-12-21 11:47来源:未知 作者:admin 点击:
分享到:
下面先来看下在表格中使用纯CSS实现圆角效果图: 就是这么简单好看的效果,不使用图片背景实现,纯CSS实现,下面是源码: Code [http://www.xueit.com] style type ="text/css" div.RoundedCorner... {

下面先来看下在表格中使用纯CSS实现圆角效果图:

就是这么简单好看的效果,不使用图片背景实现,纯CSS实现,下面是源码:

Code [http://www.xueit.com]
<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> <div class="RoundedCorner"> <b class="rtop"><b class="r1"></b><b class="r2"></b> <b class="r3"></b><b class="r4"></b></b> <table style="width:500px;height:100px;"> <tr> <td>单元格1</td> <td>单元格2</td> </tr> <tr> <td>单元格3</td> <td>单元格4</td> </tr> </table> <b class="rbottom"><b class="r4"></b><b class="r3"></b> <b class="r2"></b><b class="r1"></b></b> </div>
精彩图集

赞助商链接