table添加圆角效果

来源:互联网 发布:qq宠物 知乎 编辑:程序博客网 时间:2024/06/14 21:56
table td, table th{  border-top: 2px solid #e9e9e9;  border-left: 2px solid #e9e9e9;}table tr td:last-child, table tr th:last-child{  border-right: 2px solid #e9e9e9;}table tr:last-child td{  border-bottom: 2px solid #e9e9e9;}table tr:first-child td:first-child, table tr:first-child th:first-child{  border-top-left-radius: 5px;}table tr:first-child td:last-child, table tr:first-child th:last-child{  border-top-right-radius: 5px;}table tr:last-child td:first-child {  border-bottom-left-radius: 5px;}table tr:last-child td:last-child {  border-bottom-right-radius: 5px;}
//:  border-collapse: collapse; 会和 border-radius冲突!!!!
原创粉丝点击