一.使用缩放

div{
  position:relative;
}

div:after{
  content: "  ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  /* 如果不用 background-color, 使用 border-top:1px solid #e0e0e0; */
  -webkit-transform: scaleY(.5);
  -ms- transform:scaleY(.5);
  transform:scaleY(.5);
}

 

posted on 2016-08-01 11:24  鬼畜十三  阅读(181)  评论(0编辑  收藏  举报