當您將鼠標懸停在其上時,本網站上的鏈接似乎重疊。 div的已經給予了正確的高度,但一旦你將鼠標懸停在鏈接似乎是撿的165像素鏈接互相重疊
http://www.dawaf.co.uk/animate/
有沒有一種方法來設置高度爲93px停止重疊的高度?
#about {
position: absolute;
left: 0;
top: 0;
height: 89px;
width: 336px;
}
span.title-link {
font-size: 6.8em;
font-weight: bold;
font-family: 'Titillium Web', Arial, sans-serif;
text-decoration: none;
line-height: 93px;
cursor: pointer;
opacity: 0;
}
span.title-link a {
color: #FFF;
text-decoration: none;
}
span.title-link a:hover {
color: #E91F4C;
}
#about-red {
left: -104px;
width: 545px;
}
#logo-red {
height: 93px;
width: 209px;
position: absolute;
left: 336px;
}
/*Echo
------------------------------------------------------------ */
#gallery {
position: absolute;
left: 0;
top: 0;
height: 92px;
width: 434px;
}
#gallery-echo {
left: -202px;
width: 714px;
}
#logo-echo {
height: 93px;
width: 280px;
position: absolute;
left: 434px;
}
/*Events
------------------------------------------------------------ */
#contact-events {
left: -216px;
width: 862px;
}
#contact {
position: absolute;
left: 0;
top: 0;
height: 92px;
width: 448px;
}
#logo-events {
height: 93px;
width: 414px;
position: absolute;
left: 448px;
}
也許你修正了它,但在Google Chrome瀏覽器中看起來沒問題。但是,一點。在菜單中,如果儘量保留適用於a元素的儘可能多的樣式,並且很少應用於ul或li,您將獲得更多可預測的CSS行爲。 – magi182 2013-03-27 18:30:41
如果您在Chrome中使用檢查元素,則可以看到a元素重疊。因此,關於「關於」的鏈接將部分路徑重疊到「圖庫」鏈接上。 – user1652997 2013-03-27 18:33:17
問題出在span.title-link – user1652997 2013-03-27 18:34:44