0
divを最大幅と最大高さに合わせるにはどうすればいいですか?最大幅と高さを有効にし、アスペクト比を維持する中央div
私のコードは、これまでのdivを中心に、それは6のアスペクト比を維持しません:あなたは変化に気づくcouldntの
#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>
https://codepen.io/timsim/pen/dWMbqR
研究キーワード:パディング下ハック – CBroe
私はコンテナに詰め物を追加する場合は、いくつかの奇妙なものは、あなたがチェックしてい@sanjihan – sanjihan
起こっに始まり、このhttps://www.w3schools.com/howto/howto_css_aspect_ratio.asp –