当前位置:   article > 正文

CSS系列005——画直线_css画线

css画线
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>画直线</title>
  8. <style>
  9. .hori-line{
  10. width: 50%;
  11. height: 2px;
  12. border-top: solid blue;
  13. }
  14. .vertical-line{
  15. width: 50px;
  16. height: 20%;
  17. border-right:solid blue
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <hr class='hori-line' />
  23. <br>
  24. <div class='hori-line'>水平竖线</div>
  25. <br>
  26. <div class='vertical-line'>垂直横线</div>
  27. <br>
  28. <div class='hori-line'>水平竖线</div>
  29. </body>
  30. </html>

效果如图

 

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号