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 的网站(float:right;)。但我希望它也表现得像一个固定的 div。但是当添加 (position:fixed;) 时,div 的行为不再像浮动 div 了。所以左 div 占据所有位置并与右 div 重叠。
希望有答案...
#div-right { position: fixed; right: 0px; width: 100px; } #div-left { margin-right: 100px; }
工作示例