1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <html>
<head>
<title>TEST</title>
<style type="text/css" media="screen">
html, body {
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
}
/* centrage horizontal */
body > img {
display: block;
margin: auto;
}
/* centrage horizontal+vertical */
body > img.center {
display: block;
margin: 0px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -142px;
margin-left: -150px;
}
</style>
</head>
<body>
<img class="center" src="http://whfb.lexicanum.com/mediawiki/images/thumb/2/23/StoneTroll.jpg/300px-StoneTroll.jpg" width="300" height="285" />
</body>
</html> |