![]() |
|
|
|||||||
![]() |
HTML - CSS: Shift/space between 2 div |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Dear Group,
The page to be viewed is there: http://www.imago-services.com/PE/PE.htm in IE and there: http://www.imago-services.com/PE/PE2.htm in FF (the difference is that the first is in HTML Transitional and the second in XHTML Strict) As you will be able to note it, I have a shift of ? px in lower part of each one of my banners (high and low) and I don't know how to solve it, except by deleting the "a href" which surrounds them. But it is not the required solution. What is even more crazy, it is that in HTML Transitional under FF, the shift does not appear anymore... Why??? I have simplified to maximum the code HTML and css integrated to find the problem there, but I don't find anything... In advance, Thnks you very much for the assistance which you will be able to provide me on this subject well embarrassing. So long! SR IMAGO-Services |
|
|
|
|
#2 |
|
Posts: n/a
|
IMAGO-Services wrote: > As you will be able to note it, I have a shift of ? px in lower part of > each one of my banners (high and low) and I don't know how to solve it, Search for "Quirks mode" |
|
|
|
#3 |
|
Posts: n/a
|
Andy Dingley a écrit :
> IMAGO-Services wrote: > > > As you will be able to note it, I have a shift of ? px in lower part of > > each one of my banners (high and low) and I don't know how to solve it, > > Search for "Quirks mode" Thanks a lot, Andy. It's just what i seek to obtain info but the display: inline doesn't work. Finally, i received a solution from an other group, in deleting blank or line break in my html code like this (see at tags img / a / div ended one the same line): <body> <div class="fond"> <div class="banniere"> <a href="index.php"> <img src="banniere.jpg" alt="banniere"/></a></div> <div class="decor" style="background-color: #094987"> <a href="index.php"> <img src="pro-e.gif" width="155" alt="Retour à la page d'accueil"/> </a> </div> <div class="banniere"> <a href="index.php"> <img src="banniere.jpg" alt="banniere"/></a></div> </div> </body> Enjoy your day ! |
|