当我尝试在横幅顶部链接时无法正常工作。我觉得Div z-index出了问题。但我无法得到它。任何人都可以帮我解决这个问题。我附上了相关的内容。请使用以下链接查看该网站。
http://10.8.12.41/srilanka/
#header{
color: #CFCFCF;
font-weight: 600;
/*border-bottom: 4px solid #84AE03;*/
background:#fff;
width: 100%;
z-index: 10;
}
#banner{
height: 100%;
margin: 0px auto 0;
position: relative;
width: 1000px;
z-index: 1;}
#topnavbar{
height: 26px;
/* margin:-5px 102px 0 0;*/
position: relative;
background:url(../images/top_lin.png) repeat-x;
float:left;
width:100%;
float:right;
}
#topnavmenu{
float:right;
width:300px;
padding:3px;
}
#topnavmenu a{
color: #FFFFFF;
display: inline-block;
font-family: 'Open Sans Condensed',sans-serif;
font-size: 11px;
font-weight: 600;
/*line-height: 35px;*/
padding: 0;
text-align: center;
text-decoration: none;
width: auto;
z-index:10px;
}
#apDiv2 {
height: 100%;
margin:0px auto;
position: relative;
width: 1000px;
z-index: 1;
background:url(../images/menubg.png) repeat;
background-color:#00247d;
}
Html
------------------------------------------------
<div id="topnavbar">
<div id="topnavmenu">
<a href="#">CheckmyTrip</a> |<a href="#">Baggage</a> | <a href="#">Travel Tips</a>
</div>
</div>
<div id="banner">
<img src="images/Banner.png" />
</div>
<div id="apDiv2">
<!-- Start css3menu.com BODY section id=2 -->
<ul id="css3menu2" class="topmenu">
<li class="toplast"><a href="contactus.php" style="height:32px;line-height:32px;"><img src="index_files/css3menu2/contact.png" alt=""/>Contact Us</a></li>
</ul>
<p style="display:none"><a href="http://css3menu.com/">Pure CSS Dropdown Menus Css3Menu.com</a></p>
<!-- End css3menu.com BODY section -->
<p style="display:none"><a href="http://css3menu.com/">Pure CSS Dropdown Menus Css3Menu.com</a></p>
<!-- End css3menu.com BODY section -->
</div>
答案 0 :(得分:1)
z-index
上的{p> #banner
是您的大部分问题。
#header {
color: #CFCFCF;
font-weight: 600;
/*border-bottom: 4px solid #84AE03;*/
background:#fff;
width: 100%;
}
#banner {
height: 100%;
margin: 0px auto 0;
position: relative;
width: 1000px;
z-index: -1;
}
#topnavbar {
height: 26px;
/* margin:-5px 102px 0 0;*/
position: relative;
background:url(http://placehold.it/26x26) repeat-x;
width:100%;
float:right;
}
#topnavmenu {
float:right;
width:300px;
padding:3px;
}
#topnavmenu a {
color: #FFFFFF;
display: inline-block;
font-family:'Open Sans Condensed', sans-serif;
font-size: 11px;
font-weight: 600;
/*line-height: 35px;*/
padding: 0;
text-align: center;
text-decoration: none;
width: auto;
z-index:10px;
}
#apDiv2 {
height: 100%;
margin:0px auto;
position: relative;
width: 1000px;
z-index: 1;
background:url(http://placehold.it/300x300) repeat;
background-color:#00247d;
}
另一方面,我看到你正在学习,因为这段代码有很多不妥之处。你做得很好,但这里有一些指示。首先,同一类中的float: left
和float:right
没有意义。那么你也是浮动元素,在一些地方不需要它。 position
是一个影响z-index
的高级属性,z-index
在没有position
的情况下无效,并且通常应该至少与其中一个一起使用:{{1} }} top
left
right
。如果你认为你需要它,我只会使用它。我认为你的布局都可以在没有bottom
的情况下完成。
网站上的很多人都不喜欢W3Schools,但对于像你这样的初学者来说,它们非常棒。
保持良好的工作,你会变得更好。