Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
HTML kennt kein "heady"...:Aber wieso geht <nav> aber nicht <heady>? Hab es jetzt über #heady und ein Div gelöst. Aber das würde mich wirklich interessieren :)
nav {
margin: 0;
padding: 0;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 30;
opacity:.85;
background-color: #d3d6cf;
}
nav ul {
padding: 0px;
margin: 0 auto;
width: 850px;
list-style:none;
}
nav li {
list-style: none;
position:relative;
float:left;
background-color: #d3d6cf;
}
nav a {
text-decoration: none;
display: block;
color: #9c0503;
padding:10px 20px;
}
nav ul li:hover > a {
background-color: #b9c4c0;
}
nav ul ul {
position: absolute;
left:-99999em;
top:-99999em;
padding:0;
margin:0;
}
nav ul li:hover > ul {
left:0;
top:auto;
float:left;
width:auto;
}
nav ul ul li {
float: none;
}
nav ul ul a {
font-size:75%;
width:150px;
padding:5px;
}