使用css在页面中定位div时出现问题
我在尝试在网页中定位 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,他说的是:
Yeah what he said:
好吧,你已经有了一个包装器......为什么不给它一个主要内容区域的硬宽度+侧栏的宽度以及两者之间你想要的任何间距。那么你可以将它们都浮动到左侧。或者您可以将 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.