怎么实现移动端的边框0.5px?

怎么实现移动端的边框0.5px?,第1张

怎么实现移动端的边框0.5px?

一种是通过transform中的scale

    border: 1px solid red;    transform: scaleY(.5);

一种是通过meta viewport中设置init-scale为0.5

<meta name="viewport" content="width=device-width, initial-scale=0.5">

一种是设置hr

    border: 0px;    border-bottom: 1px solid red;

一种是基于背景渐变实现

    height: 2px;    background-image: linear-gradient(0deg, red 50%, transparent 50%)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4924676.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-12

发表评论

登录后才能评论

评论列表(0条)

保存