启用最大宽度和高度的中心div并保持纵横比

时间:2017-04-20 10:10:25

标签: html css

如何将具有最大宽度和最大高度的div居中,同时保持其宽高比?

我的代码到目前为止以div为中心,但它不保持宽高比为6:5(高度:宽度)



#main-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  height: 500px;
  background-color: #953d44;
  position: relative;
}

#container {
  width: 80%;
  height: 80%;
  max-height: 600px;
  max-width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background-color: cornflowerblue;
}

<div id="main-content">
  <div id="container"></div>
</div>
&#13;
&#13;
&#13;

https://codepen.io/timsim/pen/dWMbqR

1 个答案:

答案 0 :(得分:0)

您无法注意到更改,因为主容器本身只有500px的高度。我已将其更改为1000px。

运行以下代码段并转到全屏模式,它确实有效!

#main-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  height: 1000px;
  background-color: #953d44;
  position: relative;
}

#container {
  width: 80%;
  height: 80%;
  max-height: 600px;
  max-width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background-color: cornflowerblue;
}
<div id="main-content">
  <div id="container"></div>
</div>

P.S。:如果主容器高度小于为指示器指定的最大高度,这将不起作用。