asd
Neues Mitglied
Wie fixiere ich eine Navigation ? Ich möchte sowas wie bei www.cc.striver.net
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.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>Fixierte Navigation nur für moderne Browser</title>
<style type="text/css">
body, p a {
font: normal 100.01% Helvetica, Arial, sans-serif;
color: black; background-color: white;
min-width: 40em; /* Mindestbreite verhindert Anzeigefehler in modernen Browsern */
}
p {
margin: 3em 0 0 3em; /* Positionierung des 'zurueck'-Links */
}
html {
padding: 0;
}
body {
margin: 0; padding: 0;
}
#fixiert {
position: absolute;
top: 20px; left: 10%; right: 10%;
width: 80%;
height: 20px;
background-color: white;
border: 1px solid silver;
}
html>body #fixiert { /* nur fuer moderne Browser! */
position: fixed;
}
</style>
</head>
<body>
<div id="Scrollbereich">
<--text-->
</div>
<div id="fixiert">
<ul id="Navigation">
[*][url="../einfuehrung.htm"]14[/url]
[/list]
</div>
</body>
</html>