让一个标签水平垂直居中
<div>你好!div</div>
css:
div{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
left: 0;
top: 0;
background-color: rgba(0,0,0,0.5);
}
让一个标签水平垂直居中
<div>你好!div</div>
css:
div{
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
left: 0;
top: 0;
background-color: rgba(0,0,0,0.5);
}