Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
По вертикали, по горизонтали, а также содержимое блоков.
<HTML>
<head>
<title>
css vertical center
</title>
<style type="text/css">
<!-- DIV.outer { position: absolute; left: 50%; top: 50%; width: 300px; height: 300px; margin-left: -150px; /* half of width */ margin-top: -150px; /* half of height */ background-color: #6699CC; } DIV.inner { position:absolute; left: 50%; top :50%; width: 100px; height: 100px; margin-left: -50px; /* half of width */ margin-top: -50px; /* half of height */ background-color: #99CCFF; } -->
</style>
</head>
<body>
<div class="outer">
in center of page
<div class="inner">
in center of outer div
<br>
<br>
<br>
<a href="/">
milov.nl
</a>
</div>
</div>
</body>
</html>