码迷,mamicode.com
首页 > 移动开发 > 详细

移动端1像素解决方法,根据媒体查询transform缩放

时间:2019-10-10 10:48:01      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:pos   transform   only   查询   flow   over   像素   for   移动端   

.borderOnePx{
   position: relative;
}
.borderOnePx::after {
    content: ‘‘;
    height:1px;
    background:#000;
    -webkit-transform: scaleY(0.5);
    -webkit-transform-origin:0 0;
    overflow: hidden;
}
/* 2倍屏 */
@media only screen and (-webkit-min-device-pixel-ratio: 2.0) {
    .borderOnePx::after {
        -webkit-transform: scaleY(0.5);
        transform: scaleY(0.5);
    }
}

/* 3倍屏 */
@media only screen and (-webkit-min-device-pixel-ratio: 3.0) {
    .borderOnePx::after {
        -webkit-transform: scaleY(0.33);
        transform: scaleY(0.33);
    }
}
  

移动端1像素解决方法,根据媒体查询transform缩放

标签:pos   transform   only   查询   flow   over   像素   for   移动端   

原文地址:https://www.cnblogs.com/binmengxue/p/11646180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!