如何优化导航栏以调整大小?

时间:2014-02-14 15:00:07

标签: css html5 resize navbar nav

我刚开始在6天前学习html和css。我每天都做一个小时,我很开心。我试图解决我自己的大部分问题,但是我一直在寻找资源来解决这个问题。

@import url(http://fonts.googleapis.com/css?family=Merriweather);

*
{
    text-decoration: none;
    box-sizing: border-box;
}

body
{
    background-color: #ff9900;
    font-family: 'Merriweather', serif;
}

#page
{
    margin: -8px;
}

#wrapper
{
    /*margin: 1px;*/
}

h2>a 
{
    margin: -25px;
    float: left;
    background-color: #ffde00;
    color: #097054;
    padding: 20px;
}

h2>a:hover 
{
    color: #ffde00;
    transition: .5s ease;
    background-color: #6599ff;
}

.container
{
    padding: 6px;
    padding-right: 50px;
    padding-left: 20px;
    text-align: center;
    background-color: #097054;
}

ul li
{
    background-color: #ffde00;
    display: inline;
    margin: 0 auto;
    padding: 10px;
    color: #097054;
    font-weight: 900;
    font-size: 14pt;
}


ul li:hover
{
    transition: .5s ease;
    background-color: #097054;
    border-color: #25C1BC;
    color: #ffde00;

}

#p1
{
    color: #097054;
    height: 25em;
    width: 25em;
    background-color: #097054;
    margin-left: 8px;
    margin-top: 20px;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 500ms;
}

p
{
    background-color: #ffde00;
    padding: 20px;
    margin-top: 8px;
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 500ms;
}

#p1:hover;
{
    /*background-color: #000000;*/
}

p:hover
{
    height: -75%;
    width: -75%;
    padding-bottom: 3.8em;
    box-shadow: -5px -5px 0px 0px #097054;
    margin-top: 3em;
    color: #ffde00;
    background-color: #6599ff;
    font-weight: 600;
}

基本上发生的事情是我的导航栏在调整大小后会变得非常混乱。这导致链接重叠并且看起来非常糟糕。

感谢您的时间和考虑。

http://jsfiddle.net/JZ9LZ/

2 个答案:

答案 0 :(得分:0)

添加此.container{white-space: nowrap;}Disable line breaks using CSS

之前已经提出过这个问题

答案 1 :(得分:0)

由于你的li元素的宽度最小,因此无法用html / css解决你的问题。

你应该减少在窗口宽度上计算它的文本字体大小,但这只能用javascript进行

我的建议是像以前一样离开这个页面(我想这只是为了好玩),当你有良好的html / css技能时,你可以开始学习jQuery< - 对于UI非常重要