核心提示:1.已知元素宽高 元素{position:absolute;top:50%;left:50%;width:100px;height:100px;margin-left:-50px;margin-top...
1.已知元素宽高
元素{
position:absolute;
top:50%;
left:50%;
width:100px;
height:100px;
margin-left:-50px;
margin-top:-50px;
}
2.未知元素宽高或元素不定宽高
元素{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
}


