使用css在页面中定位div时出现问题

发布于 2024-09-27 05:10:12 字数 309 浏览 5 评论 0原文

我在尝试在网页中定位 div 时遇到问题,这是我的测试站点: http://dirtymind.jvsoftware.com/

问题出在左侧栏(带有登录名的栏)输入和其他东西),它目前是一个 div,我使用负的上边距和左边距将其定位在原来的位置,但根据屏幕分辨率,它会向左或向右移动。显然这是因为我使用边距,这就是 css 的工作方式,但我不知道如何获得相同的结果。

有谁知道如何将我的侧边栏定位在有关分辨率的位置?

预先感谢大家。

I'm having a problem trying to position a div in my web page, here's my test site:
http://dirtymind.jvsoftware.com/

The problem is with the left side bar (the one with the login inputs and stuff), it's currently a div which I used negative top and left margins to position it where it is, but depending on the screen resolution it moves to the left or right. Obviously this is beacuse I'm using margins this is how css would work but I don't know how to get this same results otherwise.

Does anyone know how to position my sidebar on place regarding the resolution?

Thanks all in advance.

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

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

发布评论

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

评论(2

孤独陪着我 2024-10-04 05:10:12

是的,他说的是:

<div id='wrapper' style='width:800px'>
  <div id='left-sidebar' style='width:200px;float:left'>
     ...content...
  </div>

  <div id='contenedor' style='width:600px;float:left'>
     ...content...
  </div>

</div>

Yeah what he said:

<div id='wrapper' style='width:800px'>
  <div id='left-sidebar' style='width:200px;float:left'>
     ...content...
  </div>

  <div id='contenedor' style='width:600px;float:left'>
     ...content...
  </div>

</div>
默嘫て 2024-10-04 05:10:12

好吧,你已经有了一个包装器......为什么不给它一个主要内容区域的硬宽度+侧栏的宽度以及两者之间你想要的任何间距。那么你可以将它们都浮动到左侧。或者您可以将 wrappr 设置为相对位置(不分配位置),然后在侧栏上使用绝对位置,并从包装器的 0 点开始在坐标中进行 punh。

Well you already have a wrapper in place.... Why not give it a hard width of the main content area+the width of the side bar and any spacing you want between the two. then you can just float both of them to the left. Or you could set the wrappr to position relative (not assigning a position) and then use position absolute on the side bar and punh in the coordinates from 0 point of the wrapper.

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