首页 > 代码库 > display:table-cell

display:table-cell

<html>
<head>
<title> </title>
</head>
<body>
<div style="background: red;width: 200px;height: 200px;display: table;">
<div style="display:table-cell;">啊实打实的</div>

</div>
</body>
</html>

 

父级一定添加display: table

子集添加display:table-cell

想要垂直居中添加vertical-align: middle;

display:table-cell