弹出框在页面左右上下居中的写法
自适应写法
.dialog{
border-radius: 8px;
display: flex;
flex-direction: column;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
版权声明:本文由Web学习之路发布,如需转载请注明出处。