(html5)让HTML的Table表格圆角
发布时间:2016年12月14日 作者:未知 查看次数:1449
css3的新属性:border-radius,以下代码需要HTML5支持,可以使table表格圆角: <table border="2" width="100%" style="border-style:dashed;background-color:#D9BDD2;border-top-left-radius: 10px; border-top-right-radius: 10px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;"> <tr> <td>aaa</td> </tr> </table> 类似代码 div{ -moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px; }
|
|
|