[css] centrage vertical d'un site

centrage vertical d'un site [css] - HTML/CSS - Programmation

Marsh Posté le 27-07-2009 à 15:28:35    

bonjour à tous j'ai un petit souci de centrage vertical de site
 
j'ai un div global avec une bordure centré horizontalement et verticalement contenant un menu et un div central dont la taille en hauteur est susceptible de varier, du coup ça fait ceci
 
http://www.jeremieparmentier.com/test/kathleen/div2.jpg
 
et ceci quand le div central s'étire en hauteur
http://www.jeremieparmentier.com/test/kathleen/div.jpg
 
sous ie ça marche (incroyable)

Code :
  1. html, body {
  2. height: 100%;
  3. width: 100%;
  4. margin: 0;
  5. padding: 0; 
  6. overflow:auto;
  7. font-family: "Times New Roman", Times, serif;
  8. }
  9. #global{
  10. position: absolute;
  11. top: 50%;
  12. left: 50%;
  13. margin-top: -260px; /* moitié de height */
  14. margin-left: -499px; /* moitié de width */
  15. border: 1px solid #000;
  16. text-align: center;
  17. min-width: 998px;
  18. width: 998px;
  19. min-height:520px;
  20. }


 
pout tester online http://www.jeremieparmentier.com/t [...] extes.html
 
& http://www.jeremieparmentier.com/test/kathleen/cv.html
 
merci d'avance pour votre aide!

Reply

Marsh Posté le 27-07-2009 à 15:28:35   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed