Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature currently requires accessing the site using the built-in Safari browser.
div.content {
border: 1px solid #000;
width: 1 px;
}
div.content2{
max-width:100%;
border: 1px solid #000;
width: 1 px;
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Dokumenttitel</title>
<style type="text/css">
div.content {
border: 1px solid #000;
width: 1 px;
}
div.content2 {
max-width:100%;
border: 1px solid #000;
width: 1 px;
}
</style>
</head>
<body>
<div class="content">x</div>
<div class="content2">x</div>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Dokumenttitel</title>
<style type="text/css">
div.content {
border: 1px solid #000;
width: 200px;
float:left;
}
div.content2 {
width:200px;
float:left;
border: 1px solid #000;
margin-left:10px;
}
</style>
</head>
<body>
<div class="content">x</div>
<div class="content2">x</div>
</body>
</html>