HTML表格的这种虚线样式怎么做出来的??
HTML表格的这种虚线样式怎么做出来的??
日期:2021-07-22 15:19:42 人气:1
border-bottom: 1px dotted #000;这是一种方法,还有一种方法就是使用背景图片例子如下:
.showLine {
float:left;
height:10px;
width:100%;
border:0;
background:url(/images/xian.png) center bottom no-repeat;//此处为做好的点线图
}
.showLine {
float:left;
height:10px;
width:100%;
border:0;
background:url(/images/xian.png) center bottom no-repeat;//此处为做好的点线图
}