CSSのmax-width
プロパティで練習しています。次のコードでは、内部div .topimage
(赤色のもの)が設定されても表示されませんmax-width: 960px;max-height: 200px;
何が原因である可能性がありますか?ブラウザウィンドウのサイズに合わせて内側divを拡大/縮小したいので、最大幅/高さを使用しています。内部divの最大幅は機能しません
html,body {
\t margin: 0px;
\t height: 100%;
\t width: 100%;
\t left: 0px;
\t top: 0px;
\t background-color: rgba(173,192,241,1);
}
.wrapper {
\t height: 800px;
\t max-width: 960px;
\t margin-left: auto;
\t left: 0px;
\t top: 0px;
\t margin-right: auto;
\t position: relative;
}
.topimage {
\t max-width: 960px;
\t max-height: 200px;
\t background-color: rgba(255,0,0,1);
}
<div class="wrapper">
<div class="topimage">
</div>
</div>