0

好的,我的页面上有一个固定位置的标题。它工作正常,一切正常......但我有一个大问题 - >当我尝试缩小浏览器窗口时,内容(在这种情况下是菜单)会超出标题的div.

我该如何解决这个问题?有什么办法吗?

编辑: 我希望标题保持在固定位置。

[如果您想检查实际问题,请访问: http: //www.chilledlime.com,然后缩小浏览器窗口]

提前致谢。

4

2 回答 2

0

position:fixed从中删除#logobox

#logobox {
    background: none repeat scroll 0 0 black;
    border: 0 none;
    height: 60px;
    margin-bottom: 20px;
    margin-top: 10px;
    position: fixed; <----- this -----
    width: 100%;
    z-index: 100;   
}
于 2011-11-24T13:59:46.713 回答
0

尝试这个,

#logobox ul {
display: inline;
list-style: none;
padding-top: 15px;
width: 65%;
}

并且您可以在“#logobox”中添加或不添加“overflow:hidden”,这取决于您要查找的内容

于 2011-11-24T14:46:55.747 回答