在您点击它们之前,悬停链接会消失

时间:2013-06-17 15:30:38

标签: css

我已经使用CSS在UL标签中创建了一个下拉悬停列表,但在我将鼠标放在链接上之前,它们就消失了。我怎么能阻止这个?

这是我的代码:

#header {
  margin: 0px;
  padding: 0px;
  width: 100%;
  background-color: red;
  height: 30px;
  box-shadow:inset 0 1px rgba(255,255,255,0.3), inset 0 10px rgba(255,255,255,0.2), inset         0 10px 20px rgba(255,255,255,0.25), inset 0 -15px 30px rgba(0,0,0,0.3);
  text-align: center;
}
#header ul {
  margin: 0px;
  padding: 0px;
}
#header ul li {
  display: inline;
  text-align: center;
  position: relative;
}
#header ul li a {
  text-decoration: none;
  font-size: 22px;
  color: white;
  font-weight: bold;
  line-height: 30px;
  margin-left: 10px;
}
#header ul ul {
  position: absolute;
  visibility: hidden;
  top: 31px;
}
#header ul li:hover ul {
  visibility: visible;
}
#header ul li a:hover {
  text-decoration: underline;
  font-size: 22px;
  color: black;
}

2 个答案:

答案 0 :(得分:0)

尝试添加height

#header ul li a{
text-decoration:none;
font-size:22px;
color:white;
font-weight:bold;
height:30px;
line-height:30px;
margin-left:10px;
}

答案 1 :(得分:0)

由于您的主菜单位于页面的最顶部,因此它从0像素到30像素,并且在以31像素开始子菜单之前,您已经留下了1个像素的间隙。将主菜单高度更改为31px或将子菜单顶部更改为30px可以解决您的问题。