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 id="Main"> <div id="content"></div><div id="sidebar"></div> </div>
注意 Div 是一个 Block 元素。您有 2 个选项来纠正此问题。从像 span 这样的内联元素中使用(而不是 content andsidebar )或将 div 转换为像 css 这样的内联元素
#sidebar, #content { display: inline-block; }