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.
Das ist mir aber neu ... :suspekt:leimy hat gesagt.:Div's sind standard mässig in der Mitte des Fensters
div#center
{
position: absolute;
left: 50%;
width: 500px;
margin-left: -250px; /* negative Hälfte von width:500px = horizontal zentriertes DIV */
top: 50%;
height: 300px;
margin-top: -150px; /* negative Hälfte von height:300px = vertikal zentriertes DIV */
}
<div id="center"></div>
<html>
<head>
<title>
Title
</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body bgcolor="#FFFFFF">
<div class="sitediv_u">
test
</div>
</body>
</html>
.sitediv_u {
background-color:#000000;
border:solid 0px;
padding:2px;
text-align:center;
vertical-align:middle;
position:absolute;
left:50%;
width:760px;
margin-left: -380px;
top:50%;
height:420px;
margin-top:-210px;
}
Was „macht“ es denn? Wie wird es denn dargestellt und wie soll es dargestellt werden?Das macht es aber nicht!