您的位置:首页 > 移动开发

关于移动端1px分割线

2020-02-03 02:35 831 查看

移动端1px分割线设置

// 使用伪类 最后一个li留白
&:not(:last-child):after{
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background: #ccc;
transform: scaleY(0.5);
}

另一个使用的

border-bottom: solid 1px #ccc;

对比图

  • 点赞
  • 收藏
  • 分享
  • 文章举报
Aom_yt 发布了2 篇原创文章 · 获赞 0 · 访问量 53 私信 关注
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: