- 盒子边框做细线
.app_progres_play:before{
content: "";
position: absolute;
top: -50%;
bottom: -50%;
left: -50%;
right: -50%;
width: 200%;
height: 200%;
-webkit-transform: scale(0.5);
transform: scale(0.5);
border: 1px solid #e1e3e5;
box-sizing:border-box;
border-radius: 0.1rem;
box-shadow: 0 2px 23px 0 rgba(0, 0, 0, 0.04);
}
-
单独盒子做细线
<div class="ThinLine"></div> .ThinLine{ width: 6.34rem; margin: auto; border: none; border-bottom: 1px solid #e1e3e5; height: 1px; transform: scaleY(0.5); transform-origin: 0 0; -webkit-transform: scaleY(0.5); -webkit-transform-origin: 0 0; }