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.
#main
{
position: relative;
width: 800px;
clear: both;
border: 1px solid black;
margin: 30px auto;
background-color: white;
}
#navbar
{
position: relative;
width: 200px;
left: 0px;
background-color: white;
}
#text
{
position: relative;
right: 0px;
width: 600px;
background-color: white;
}
#main
{
width: 800px;
border: 1px solid black;
margin: 30px auto;
background-color: white;
}
#navbar
{
width: 200px;
left: 0px;
background-color: white;
}
#text
{
right: 0px;
width: 600px;
background-color: white;
}
<div id='main'>
<div id='navbar'>
NAVBARINHALT
</div>
<div id='text'>
TEXT IM MAINTEIL
</div>
</div>