Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
中央ゾーンが 800px の Web ページを作成しています。解像度が高い場合、「サイドバー」は別の色で表示されます。私はこのコードを持っています:
body { width: 800px; height: auto; ... }
コンテンツが非常に小さい場合、中央ゾーンがページの最後まで拡張されることを望みます. これを行う最善の方法は何ですか?
あなたができる唯一のことは、次のようなものです:
<style type="text/css"> html, body, .container { height: 100%; width: 800px; margin: 0 auto; } .container { background: yellow; } </style>
と...
<body> <div class="container"> dewdewd </div> </body>