CSS3实现0.5px的线
Posted 熬夜的小青年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS3实现0.5px的线相关的知识,希望对你有一定的参考价值。
如何使用CSS3实现0.5PX的线
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>0.5px的线</title>
<style>
.line
position: absolute;
left: 0;
top: 10px;
width: 100%;
height: 1px;
background-color: #000000;
transform: scaleY(.5);
.line1
position: relative;
top: 20px;
width: 100%;
height: 1px;
background-color: #000000;
</style>
</head>
<body>
<div class="line"></div>
<div class="line1"></div>
</body>
</html>
以上是关于CSS3实现0.5px的线的主要内容,如果未能解决你的问题,请参考以下文章