这里是element-ui的step组建改装的进度条,色块是用::before写的一个图片,代码样式是
.union{
position: absolute;
bottom: px(53);
width: px(128);
height: px(219.28);
background: url('@/assets/union.png') center center no-repeat;
}
纠正
.union{
position: absolute;
bottom: px(53);
width: px(128);
height: px(219.28);
background: url('@/assets/union.png') no-repeat;
background-size: 100% 100%;// 或者 cover也可以
}