css实现定位居中

css实现定位居中

方法一:
width: 600px;
height: 400px;
position: absolute;
left: 50%;
top: 50%;   
transform: translate(-50%, -50%);
方法二:
width: 600px;
height: 400px;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
margin: auto; 

你可能感兴趣的:(css,css)