L
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.
body
{
margin: 0px;
padding: 0px;
left: 0px;
right: 0px;
}
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="div.css">
</head>
<body >
<div class="Banner">
Banner
</div>
<div class="Navi">
Navi</div>
<div class="Seiteninhalt">
Seiteninhalt</div>
<div class="Test">
Test
</div>
</body>
</html>
body {
margin: 0px;
padding: 0px;
left: 0px;
right: 0px;
}
.Banner {
top:0px;
left:0px;
height:20%;
width:100%;
margin-top:0px;
background-color:black;
border:1px;
border-color:yellow;
z-index:2;
}
.Navi {
height:10%;
width:20%;
margin-top:2px;
background-color:yellow;
border:1px;
border-color:gray;
float:left;
z-index:2;
}
.Seiteninhalt {
height:100%;
width:80%;
margin-top:2px;
background-color:fuchsia;
border:1px;
border-color:yellow;
float:right;
z-index:2;
}
.test {
position:absolute;
height:100px;
width:100px;
top:10%;
left:50%;
background-color:yellow;
border:1px;
border-color:yellow;
float:right;
z-index:1;
}