fixed i midten af browservindue
Jeg vil gerne vide hvordan man en fixed div til at være centreret i midten af browser-vinduet.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd" >
<html>
<head>
<title>Ny side</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<style type="text/css" >
body {
margin : 0;
padding : 0;
width : 100%;
height : 100%;
}
#browsercentreret {
background : #000000;
width : 200px;
height : 200px;
position : fixed;
margin : auto;
}
</style>
</head>
<body >
<div id="browsercentreret" ></div>
</body>
</html>