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>
左类是左浮动,中心也是左浮动,右类是右浮动。如何使左右类 div 固定,并且中心 div 可以像 facebook.com 一样滚动
您可能需要更新这样的属性..
.left{position:fixed;left:0px;float:left;} .right{position:fixed;right:0px;float:right;} .center{position:absolute;left:value;float:left;}