怎樣讓一個(gè)不知道大小的盒子居中
.box {
width: 300px;
height: 200px;
background-color: red;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
原理是:讓未定義寬高的div上下左右距離都為0.然后給一個(gè)margin自適應(yīng)窟蓝。可以想象成一個(gè)盒子饱普,給了四個(gè)方向的相同的力运挫,這樣就會(huì)形成一種相對(duì)的均衡力量讓其停留在中間位置了。
- 利用css3屬性
.box {
width: 300px;
height: 200px;
background-color: red;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
<style>
.box {
width: 800px;
height: 500px;
border: 1px solid #c35;
margin: 50px auto;
display: flex;
background: #ccc;
justify-content: center;
align-items: center;
}
.inner_box {
width: 290px;
height: 300px;
background: #c35;
}
</style>
</head>
<body>
<div class="box">
<div class="inner_box"></div>
</div>
</body>