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 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Centrage vertical</title>
<style type="text/css">
html,body {
width:100%;
height:100%;
margin:0;padding:0;
}
html {
display:table;
}
body {
display:table-cell;
vertical-align:middle;
}
div {
width:300px;
background:red;
margin:0 auto;
border:1px solid black;
}
</style>
<!--[if lt IE 8]>
<style type="text/css">
div {
position:relative;
top:expression(document.body.clientHeight<=this.offsetHeight ? "0" : (document.body.clientHeight-this.offsetHeight)/2+"px");
}
</style>
<![endif]-->
</head>
<body>
<div id="contenu">Ceci est mon text, mais il faut qu’il soit suffisemment long pour que je puisse avoir des retours à la ligne,mais pas trop pour pouvoir s’afficher à l’écran, quel casse-tête ! Et si vous redimensionnez l’écran, hop, je disparais, la preuve, t’arrives plus à lire le début hein ?</div>
</body>
</html> |