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
| <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Centrage Vertical</title>
<style>
*{ margin:0; padding:0; }
html, body{ width:100%; height:100%; }
#img-centree{
display:table;
height:100%;
width:100%;
text-align:center;
}
#img-centree div{
display:table-cell;
vertical-align:middle;
}
</style>
</head>
<body>
<div id="img-centree">
<div><img src="http://www.developpez.net/template/images/logo.png" alt=""/></div>
</div>
</body>
</html> |