#一像素

前端一像素问题解决

由于分辨率DPI的差异,高清手机屏上的1px实际上是由2×2个像素点来渲染,有的屏幕甚至用到了3×3个像素点所以border:1px在移动端会渲染为2px的边框虽然用户在实际使用的时候,很难发现这1px的差异,但是设计师往往会在这1px上较劲,这就产生了经典的“一像素问题&rdquo...

移动端一像素解决方案

@charset"utf-8";.border,.border-top,.border-right,.border-bottom,.border-left,.border-topbottom,.border-rightleft,.border-topleft,.border-rightbottom,.border-to...
代码星球 ·2020-07-14

手机端一像素解决办法

.border-1px{position:relative;}.border-1px:after{content:'';position:absolute;bottom:0;left:0;display:block;width:100%;border-top:1pxsolid#ccc;}//判断设别像素@media(-...