边框风格样式的属性值
**
1、none 无边框
2、solid 直线边框
3、dashed 虚线边框
4、dotted 点状边框
5、double 双线边框
6、groove 凸槽边框
7、ridge 垄状边框
8、inset inset边框
9、outset outset边框
10、inherit继承
依托border-color的属性值
边框宽度的属性值:
**
1、thin 细边框
2、medium 中等边框
3、thick 粗边框
4、px 固定值的边框
5、inherit继承
css3 实现 0.5px 的细线
<style>
.line {
position: relative;
}
.line:after {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 1px;
background-color: #000000;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
}
</style>
<div class="line"></div>