关于css:android上实现05px线条

40次阅读

共计 707 个字符,预计需要花费 2 分钟才能阅读完成。

因为安卓手机无奈辨认 border: 0.5px,因而咱们要用 0.5px 的话必须要借助 css3 中的-webkit-transform:scale 缩放来实现。

原理:将伪元素的宽设为 200%,height 设为 1px 通过 -webkit-transform:scale(.5) 来进行放大一倍,这样就失去 border 为 0.5 的边框

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .div{
            width: 100%;
            height: 100px;
            border-top: 1px solid aqua;
            posititon:relative;
        }
        .div::after{
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            box-sizing: border-box;
            width: 200%;
            height: 1px;
            transform: scale(.5);
            transform-origin: 0 0;
            pointer-events: none;
            background-color: aqua;
        }
    </style>
</head>
<body>
    <div class="div"></div>
</body>
</html>Copy to clipboardErrorCopied

成果展现:

正文完
 0