固定位置不起作用

时间:2013-08-15 04:48:28

标签: html css

我想让我的topmenu保持固定位置。我知道我必须使用position:fixed property但它不起作用。似乎在我把位置:固定顶部:0在id topmenu上它与我的下面的内容重叠。 在这里我把我的代码 这是我的网站desawis​​ataserang.com

HTML

<div id="topmenu">
<ul class="menu">
<li class="item-464 active"></li></ul>
  <div id="search">    
  <div class="search">
  </div>
    </div>
  </div>

CSS

#topmenu {
  margin: auto;
  width: 1000px;
  padding-left: 0px;
  font-family: :"Segoe UI", "Segoe WP", "Helvetica Neue", 'RobotoRegular', sans-serif; font-weight: 400;
  font-size: 1.2em;
  color: #fff;
  background-color: #c02929;
  overflow: auto;
}

#topmenu ul { 
  float: left;
  padding: 18px;
  padding-top: 0px;
  padding-bottom: 0px;  
  margin: 0;
  list-style: none;
  background-color: #c02929;
}

#topmenu a {
  display: block;
  color: #fff;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  text-decoration:none;
  text-transform: uppercase;
}

#topmenu a:hover {
  color: #000;
  text-decoration: none;
  display:block;
  background-color:#525252;
}


#topmenu li { 
  float: left;

}

#topmenu li:first-child { 
  border-left: 0px solid #000000;
}

2 个答案:

答案 0 :(得分:2)

当您提供position: fixed时,在页面上呈现其他元素时不会考虑元素呈现。你必须为你的身体提供padding-top,这样它就不会与标题重叠。

对于您的网站示例,请尝试以下操作:

#topmenu {
  position: fixed;
  width: 1000px;
  z-index: 100;
  overflow: none;
  left: 50%;
  margin-left: -500px;
}

答案 1 :(得分:0)

padding-top:添加到正文。填充顶部值将是您顶部菜单的height

的CSS:

       body {
            padding-top: 50px;
        }

        #wrapper {
        display: block;
        padding: 0;
        min-width: 1000px;
        text-align: center;
        width: 100%;
        position: fixed;
        top: 0;
        z-index:9999;
}

    #topmenu {
      margin: 0 auto;
      width: 1000px;
      padding-left: 0px;
      font-family: :"Segoe UI", "Segoe WP", "Helvetica Neue", 'RobotoRegular', sans-serif; font-weight: 400;
      font-size: 1.2em;
      color: #fff;
      background-color: #c02929;
      overflow: auto;
    }

HTML:

<div id="wrapper">
<div id="topmenu">
<ul class="menu">
<li class="item-464 active"></li></ul>
  <div id="search">    
  <div class="search">
  </div>
    </div>
  </div>
</div