Table表格横竖线实现Css

 

.tablel 
{
 border-collapse:collapse; /* 关键属性:合并表格内外边框(其实表格边框有2px,外面1px,里面还有1px哦) */
 border:solid #999; /* 设置边框属性;样式(solid=实线)、颜色(#999=灰) */
 border-width:1px 0 0 1px; /* 设置边框状粗细:上 右 下 左 = 对应:1px 0 0 1px */

.tablel th{border:solid #999;border-width:0 1px 1px 0;padding:2px;}
.tablel td {border:solid #999;border-width:0 1px 1px 0;padding:2px;}
附注:页面引用css文件,一种直接拖拉,一种在首部添加:
<head runat="server">
    <title>无标题页</title>
    <link href="default.css" rel="stylesheet" type="text/css" />
</head>

Table表格横竖线实现Css,布布扣,bubuko.com

Table表格横竖线实现Css

上一篇:Qt-获取主机网络信息之QNetworkInterface


下一篇:numpy练习题