如何将分区向右对齐

发布于 2024-08-22 20:59:00 字数 132 浏览 3 评论 0原文

我正在尝试将侧边栏推到页面右侧。当我这样做时,我的部门被推到页面底部。这是为什么呢?

这是我的页面: 链接文本

I am trying to push my sidebar to the right of my page. When I do this my division gets pushed to the bottom of the page. Why is this?

Here is my page:
link text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

找回味觉 2024-08-29 20:59:00

这是因为您使用了类似

    <div id="Main">
           <div id="content"></div><div id="sidebar"></div>
    </div>

note that Div 是一个 Block 元素的东西。
您有 2 个选项来纠正此问题。从像 span (而不是 content 和 sidebar )这样的内联元素使用,或者使用 css 将 div 转换为内联元素,例如

 #sidebar, #content
 {
      display: inline-block;
 }

It is because You use something like

    <div id="Main">
           <div id="content"></div><div id="sidebar"></div>
    </div>

note that Div is a Block element.
You have 2 option to correct this issue. use from an inline element like span (instead of content andsidebar ) or convert div to an in-line element with css like

 #sidebar, #content
 {
      display: inline-block;
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文