赞
踩
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>画直线</title>
- <style>
- .hori-line{
- width: 50%;
- height: 2px;
- border-top: solid blue;
- }
- .vertical-line{
- width: 50px;
- height: 20%;
- border-right:solid blue
- }
- </style>
-
- </head>
- <body>
- <hr class='hori-line' />
- <br>
- <div class='hori-line'>水平竖线</div>
- <br>
- <div class='vertical-line'>垂直横线</div>
- <br>
- <div class='hori-line'>水平竖线</div>
- </body>
- </html>
效果如图
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。