css实现元素居中显示
- text-align:center;
- margin-left:auto;
margin-right:auto;
width:50%; - height:100px;
line-height:100px; - display:flex;
justify-content:center;
align-items:center;
height:200px; - position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%); - display:grid:
place-items:center;
height:200px;