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.
私のウェブサイトには 3 つの div があります。
<div class="main_div"> <div class="left"></div> <div class="center"></div> <div class="right"></div> </div>
クラス左はフロート左で、中央もフロート左で、クラス右はフロート右です。facebook.comのように左右のclass divを固定して中央のdivをスクロールできるようにする方法
このようなプロパティを更新する必要がある場合があります..
.left{position:fixed;left:0px;float:left;} .right{position:fixed;right:0px;float:right;} .center{position:absolute;left:value;float:left;}