当我的页面达到其断点并且元素开始逃离其 div 时,我想获得一个水平滚动条。我将我的标题设置为内联背景图像,但是......你知道,它当然会保持在原来的位置并移出 div。当窗口变得太小时没有响应。帮助!
#logo {
background-repeat:no-repeat;
background-position: top center;
background-size: 100%;
}
#mainnavi {
border-top:inset gold 3px;
background-color:#000033;
border-bottom:inset gold 3px;
height:45px; text-align:center;
font-size:13px;
width:100%;
text-shadow:20%;
}
a:link,a:visited {
font-weight:bold;
display:inline-block;
color:#FFFFFF;
background-color:#000033;
text-align:center;
height:30px;
width:120px;
text-decoration:blink;
overflow:hidden;
}
a:hover,a:active {
background-color:#000099;
}
这就是我为导航和我的标志所做的。