赞
踩
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .half-px{/*height为0.5px的直线时,浏览器会四舍五入为1px的直线 */
- background-color: aqua;
- height: 0.5px;
- }
- .half-px1{
- background-color: aqua;
- height: 1px;
- transform: scale(0.5);/*使用缩放功能将直线缩放0.5倍*/
- }
- </style>
- </head>
- <body>
- <div style="width: 20px; height: 20px;"></div>
- <div class="half-px"></div>
- <div style="width: 200px; height: 20px;"></div>
- <div class="half-px1"></div>
- </body>
- </html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。