自定义table的样式

 1      .table{
 2             font-size: 12px;
 3             border-collapse: collapse;
 4             border-top: 1px solid #7f9db9;
 5             border-left: 1px solid #7f9db9;
 6         }
 7         .table td, .table th{
 8             height: 22px;
 9             vertical-align: middle;
10             border-bottom: 1px solid #7f9db9;
11             border-right: 1px solid #7f9db9;
12             padding: 2px;
13         }
14         .table th{
15             background-color: #c3daf9;
16         }

 

上一篇:011 HTML+CSS(Class121-)


下一篇:02.详解盒子模型&选择器初识