所以我想添加一个悬浮盒,就像我目前在活动链接“home”上设置的那个悬挂盒到其他链接但是当我试图添加它时导航菜单会移动到我徘徊的地方所以我希望一些帮助。
http://trulyamped.com/test/index.html
http://trulyamped.com/test/styles.css
只是查看来源,让我知道我需要修复的内容。
谢谢大家。
另外我还想知道当你将鼠标悬停在菜单项上时会略微延迟/淡出。例如:我将鼠标悬停在“接触”上,然后它变成蓝色,但是当我徘徊时,它需要半秒或者其他东西才能消失。
再次感谢
答案 0 :(得分:0)
的变化:
LN9:删除
LN12:填充:0px 24px;
LN25-28:已更新悬停
LN36-36:已删除
LN77-78:已删除
body {
margin: 0px;
padding: 0px;
}
header {
height: 95px;
background-color: #fff;
}
a {
text-decoration: none;
padding: 0px 24px;
}
a:link {
color:inherit;
text-decoration: none;
}
a:visited {
color:inherit;
text-decoration: none;
}
a:hover {
text-decoration: none;
background-color: #FF6850;
padding-top: 38px;
padding-bottom: 34px;
color: white;
}
a:active {
color:inherit;
text-decoration: none;
}
a.active{
background-color: #FF6850;
padding-top: 38px;
padding-bottom: 34px;
color: white;
}
#longbar {
min-width: 1000px;
width: auto;
clear: both;
height: 8px;
background-color: #fff;
background-image: url(images/header/topbar.jpg);
}
#longbarmini {
min-width: 1000px;
width: 100%;
clear: both;
height: 3px;
background-color: #FF6850;
}
#wrapper {
width: 1000px;
margin-right: auto;
margin-left: auto;
}
#wrapper header h1 {
font-family: 'Titillium Web', sans-serif;
margin: 0px;
padding-top: 16px;
padding-left: 20px;
color: #0078D4;
float: left;
font-size: 40px;
}
#wrapper header h1 span {
color: #316ca7;
font-weight: lighter;
}
#wrapper header ul {
list-style-type: none;
float: right;
padding-top: 20px;
font-family: 'Source Sans Pro', sans-serif;
font-weight: lighter;
font-size: 18px;
}
#wrapper header ul li {
display: inline;
color:inherit;
text-decoration: none;
}
section {
width: 100%;
min-width: 1000px;
height: 400px;
background-color: #AE4639;
}
#content {
height: 100px;
width: 800px;
margin-right: auto;
margin-left: auto;
background-color: #0FF;
}
footer {
min-width: 1000px;
clear: both;
height: 45px;
background-color: pink;
}