利用display:table-cell实现div水平、垂直居中
发布时间: 2023-09-27      作者:admin    浏览:100 次
<html>
<style>
.parent {
   display: table-cell;
   text-align: center; /*水平居中*/
   vertical-align: middle; /*垂直居中*/
   width:300px;height:300px;
   background: red;
}
.child {
   display:inline-block;
   width: 50px;
   height: 50px;
   background: green;
   line-height: 50px;
   text-align: center;
   color: white;
}</style>
<body>
<div class="parent">
	<div class="child">Demo</div>
</div>
</body>
</html>

分享到:

朋友圈

新浪微博

QQ空间

豆瓣网

QQ好友