边框风格样式的属性值
**
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 的细线

  1. <style>
  2. .line {
  3. position: relative;
  4. }
  5. .line:after {
  6. content: '';
  7. position: absolute;
  8. left: 0;
  9. top: 0;
  10. width: 100%;
  11. height: 1px;
  12. background-color: #000000;
  13. -webkit-transform: scaleY(0.5);
  14. transform: scaleY(0.5);
  15. }
  16. </style>
  17. <div class="line"></div>