Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
body {
margin:0px;
padding:0px;
background-image: url(gfx/bg_totenkoepfe12.jpg);
}
#Banner {
margin:1% 0px;
width:100%;
padding:0px;
text-align:center;
}
#Navigation {
margin:1% 0px;
width:100%;
padding:0px;
}
#Mainframe_Background {
margin:0px 10%;
width:80%;
height:76%;
padding:0px;
background-image: url(gfx/mainframe.png);
background-position:center;
background-repeat:no-repeat;
background-color:blue;
}
#Mainframe {
width: 750px;
height: 380px;
padding:0px;
text-align:left;
color:black;
background-color:orange;
}
</style>
</head>
<body>
<div id="Banner">
<?php
include('banner.php');
?>
</div>
<div id="Navigation">
<?php
include('navi.php');
?>
</div>
<div align="center" id="Mainframe_Background">
<div id="Mainframe">
</div>
</div>
</body>
</html>
html,body {
height:100%;
}
#Mainframe_Background {
margin:0px 10%;
width:80%;
height:76%;
padding:0px;
background-image: url(gfx/mainframe.png);
background-position:center;
background-repeat:no-repeat;
background-color:blue;
position:relative;
}
#Mainframe {
width: 750px;
height: 380px;
padding:0px;
text-align:left;
color:black;
background-color:orange;
position:absolute;
left:50%;
margin-left:-375px; /* negative Hälfte von width:750px */
top:50%;
margin-top:-190px; /* negative Hälfte von height:380px */
}