Bonjour,
J'essaie de centrer verticalement un div de taille variable contenu dans un div de taille également variable. J'ai suivi le tuto correspondant : http://www.alsacreations.com/tuto/lire/1032-comment-centrer-verticalement-sur-tous-les-navigateurs.html
Mais en appliquant la dernière technique mon div n'est toujours pas centré. Voici mon code html :
<body>
<div id="container">
<div id="bloc">
<p id="text">Kiwi</p>
</div>
</div>
</body>
Et voici le code css :
<style>
html{
height: 100%;
}
body{
font-family : TAHOMA;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
#container{
height: 80%;
width: 80%;
text-align: center;
background: blue;
}
#bloc{
width: 50%;
height: 50%;
display: inline-block;
vertical-align: middle;
background: orange;
}
</style>
Voyez vous ou est le problème ?
Merci pour votre aide !
J'essaie de centrer verticalement un div de taille variable contenu dans un div de taille également variable. J'ai suivi le tuto correspondant : http://www.alsacreations.com/tuto/lire/1032-comment-centrer-verticalement-sur-tous-les-navigateurs.html
Mais en appliquant la dernière technique mon div n'est toujours pas centré. Voici mon code html :
<body>
<div id="container">
<div id="bloc">
<p id="text">Kiwi</p>
</div>
</div>
</body>
Et voici le code css :
<style>
html{
height: 100%;
}
body{
font-family : TAHOMA;
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
#container{
height: 80%;
width: 80%;
text-align: center;
background: blue;
}
#bloc{
width: 50%;
height: 50%;
display: inline-block;
vertical-align: middle;
background: orange;
}
</style>
Voyez vous ou est le problème ?
Merci pour votre aide !