| Zok Profil : New Penguin | J'ai un autre problème mon site...
En fait, je souhaiterai avoir ma barre de menu qui arrive ainsi :
Seulement, elle se place en haut du site comme ceci :
Alors que dans Dreamweaver, avec mon code, elle se place correctement :
En fait, je ne comprends pas pourquoi quand j'augmente le margin-top, tout le site se décale alors que c'est celui d'une balise à l'intérieur d'une autre balise div dont la hauteur est fixe.
Voici mon code :
CSS :
Code :
- body{
- width:100%;
- background-color: #eeeeee;}
- .bloc1 {
- height: 332px;
- width: 979px;
- background-image: url(image/haut.jpg);
- background-repeat: no-repeat;
- margin-left: auto;
- margin-right: auto;
- }
- .bloc2 {
- width: 979px;
- height: auto;
- background-image: url(image/milieu.jpg);
- background-repeat: repeat-y;
- margin-left: auto;
- margin-right: auto;
- }
- .bloc3 {
- height: 285px;
- width: 979px;
- background-image: url(image/bas.jpg);
- background-repeat: no-repeat;
- margin-left: auto;
- margin-right: auto;
- }
- .bloc4 {
- position: absolute;
- left: 214px;
- top: 165px;
- width: 594px;
- height: 309px;
- margin-left: auto;
- margin-right: auto;
- }
- .Texte2 {
- font-family: Georgia, "Times New Roman", Times, serif;
- font-size: 18px;
- font-style: normal;
- line-height: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- text-align: justify;
- margin-left: 20%;
- margin-right: 18%;
- padding-bottom: 1px;
- padding-top: 1px;
- }
- .Menu {
- text-align: center;
- height: 49px;
- width: 560px;
- margin-left: 23%;
- margin-right: 22%;
- padding-bottom: 1px;
- padding-top: 1px;
- background-repeat:no-repeat;
- background-image:url(image/menu.png);
- position:static;
- margin-top:20%;
- }
|
C'est le truc en gras qui fait tout décaler je crois...
XHTML :
Code :
- <body>
- <div class="bloc1">
- <div class="Menu"><a href="index.html"><img src="image/accueil.png" width="75" height="49" alt="Accueuil Cabinet Strauss - Expert Comptable" border="0" /></a><a href="contact.html"><img src="image/contact.png" width="82" height="49" border="0" alt"contact" /></a></div>
- </div>
- <div class="bloc2">
- <div class="Texte2">
- <h2>M'illumina l'immenso
- - Giuseppe Ungaretti - </h2>
- <p> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam lacinia leo ac nunc. Nulla aliquet. Nullam quam leo, volutpat vitae, venenatis eget, blandit eu, augue. Proin ac libero nec magna laoreet tempus. Nullam felis. Nam et libero. Sed velit dui, tempus in, nonummy venenatis, accumsan id, justo. Ut ullamcorper. Cras sem diam, vulputate nec, tempor at, pretium at, magna. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Curabitur sapien pede, malesuada ac, ultricies in, dignissim eget, mauris. Nullam varius diam ac ligula. Morbi mattis posuere odio. Ut mattis risus ac erat. Nam volutpat, nisl vitae venenatis mollis, ante erat tincidunt purus, nec ornare felis tellus sed purus. Phasellus orci.</p>
- </div>
- </div>
- <div class="bloc3"></div>
- </div>
- </body>
|
| |
clemphenix Profil : Penguin | Essaye avec un overflow:auto; sur bloc1. | |
| |