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.
幅が固定された中央のコンテナがあり、その中にブラウザの全幅でなければならない要素があります。
<div style="width: 960px; margin: 0 auto;"> ...content... <div style="width 100% ??;"></div> ...content... </div>
私の質問は、コンテンツの上部と下部だけをラップせずに機能させる方法はありますか?
ありがとうございました。
コンテナが静的に配置されている限り、次を使用できますposition: absolute。
position: absolute
left: 0; position: absolute; right: 0;
を設定する必要はまったくなく、上部に静的な高さを設定する必要もないtopことに注意してください。
top