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.
container {
position: relative;
}
box2 {
position: absolute;
bottom: 0;
right: 0;
}
<!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></title>
<style type="text/css">
<!--
div.wrapper {
width: 500px;
border: 1px solid #000;
}
div.leftBox {
float: left;
width: 200px;
height: 200px;
border: 1px solid #000;
background: #efefef;
}
div.rightBox {
float: right;
width: 200px;
height: 50px;
margin-top: 150px;
border: 1px solid #000;
background: #efefef;
}
div.clear {
clear: both;
height: 0;
line-height: 0;
margin: 0;
padding: 0;
font-size: 0;
}
-->
</style>
</head>
<body>
<div class="wrapper">
<div class="leftBox">leftBox</div>
<div class="rightBox">rightBox</div>
<div class="clear"> </div>
</div>
</body>
</html>