Hallo Freunde,
ich bin gerade dabei eine topnavigation zu machen habe jedoch das Problem die Navigation vor dem Bild zu präsentieren.
HTML
<div class="topnav" > <!-- CMYK -->
<a class="active" href="topnav.html">Home</a>
<a href="page2.html">News</a>
<a href="#contact">Contact</a>
<a href="#about">About</a>
</div>
Code
body {
}
#top {
position: relative;
}
.topnav {
position: absolute;
z-index: 1;
margin-left: 100px;
margin-top: 75px;
}
.topnav a {
float: left;
color: #EFEFEF;
text-align: center;
padding: 15px 15px;
text-decoration: none;
font-size: 18px;
}
.topnav a:hover {
background-color: #ddd;
}
.topnav a.active {
background-color: #4CAF50;
}
Alles anzeigen
Hoffe ihr könnt mir weiterhelfen