一.使用缩放
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); }