我想将一个名为 #top_menu 的 div 居中
<div id="top_menu">This is the menu and it is in the middle of the page</div>
CSS 代码:
#top_menu { margin: 0 auto; width: 600px; ... }
顶部菜单的左侧应该是一个徽标(#logo)
这是我到目前为止所拥有的:
#logo { position: absolute; top: 0px; left: 10px; width: 200px }
现在问题来了
如果我的浏览器窗口小于 800 像素,则中心 div 会覆盖徽标 div。如果有滚动条,那就太好了。我该怎么做呢?
提前致谢!弗雷迪