最近我遇到过这种用于将元素水平和垂直定位到中心的方法.但是,我无法弄清楚每个房产的作用.有人能够向我解释对设置的影响是什么top:0, bottom:0, left:0, right:0?
(如果您能够使用外行术语来解释它或提供说明性图像,那将会很棒.)
另外,将显示设置为表格的用途是什么?
.absolute-center {
position: absolute;
display: table;
height: auto;
width: 500px;
margin: auto;
top: 0;
bottom: 0;
right: 0;
left: 0;
border: solid 1px red;
}Run Code Online (Sandbox Code Playgroud)
<p class="absolute-center">What is this sorcery?</p>Run Code Online (Sandbox Code Playgroud)