当背景色添加到页面</ul>时,<ul>消失

时间:2013-12-07 20:57:27

标签: html css

我找不到任何可以回答我问题的问题;据我所知,至少。所以,如果已经回答,我道歉。

我有一个无序列表,我将其用作导航栏。我创建了一个精灵,为悬停状态分别设置了“图像”。这一切都很好用,我把它放在页面中间就像我想要的那样。

当我在样式表中添加背景色时会出现问题。导航菜单因某些原因而消失,我无法弄清楚;也许是因为我使用的CSS样式表重置编码?

这是一个例子......这是html ......

<header class="centered">

      <ul id="navbar">
          <li class="home"><a href="#" title="home">home</a></li>
          <li class="gallery"><a href="#" title="gallery">gallery</a></li>
          <li class="contact"><a href="#" title="contact">contact</a></li>
      </ul>

</header> <!-- end of header -->

这是css ......

#navbar{
     display: block;
     width: 481px;
     height: 55.5px;
     background: url(../images/navbar2.png) left top no-repeat;
}

#navbar li{
     display: block;
     float: left;
}

#navbar li a{
     display: block;
     height:55.5px;
     text-indent:-9999px;
}

#navbar li a:hover,
#navbar li a.on{
     background-image: url(../images/navbar2.png);
}

#navbar li.home a{
     width:142px;
     background-position:-0px -55.5px;
}

#navbar li.gallery a{
     width:166px;
     background-position:-142px -55.5px;
}

#navbar li.contact a{
     width:173px;
     background-position:-308px -55.5px;
}

现在,我在样式表的开头应用了这个“CSS样式表重置”代码中的背景颜色......这里是它的一个片段。

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background: transparent;
    background-color: #000000;    
}

0 个答案:

没有答案