align dette billede med css
Kan nogen få dette billede til at centrere sig horizontal og vertical vha af CSS (kun css)?<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd" >
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>title</title>
<style>
#topbar {
position : relative;
background-color : rgb(65,65,65);
border : 0;
height : 70px;
width : 100%;
margin : 0;
padding : 0;
}
#topbarimage {
position : absolute;
border : 0px;
margin : auto;
}
html,body {
background-color : #ffffff;
height : 100%;
margin : 0px;
padding : 0px;
width : 100%;
}
</style>
</head>
<body >
<div id="topbar" >
<img src="grafik/topbar.jpg" id="topbarimage" >
</div>
</body>
</html>
