CSS in IE
Ik heb een site die werkt in FF, maar in IE laat ie tussen sommige div's open gedeeltes zien, de div's sluiten niet naadloos op elkaar aan. Hoe kan ik zorgen dat dit net als in FF werkt (in IE)?
hoe ziet je css er nu uit?
kan je een online voorbeeld laten zien van het probleem?
Plaatsen van de plaatjes:
*/
*{
padding: 0;
margin: 0;
}
#Container{
align: center;
min-height:900px;
max-height: 900px;
min-width:780px;
max-width:780px;
}
#Top{
height:170px;
width:780px;
background:url(images/template_01.gif) no-repeat;
}
#Menu{
width:780px;
height:52px;
}
#Tussen{
width: 780px;
height: 10px;
background:url(images/template_03.gif) no-repeat;
}
#Leftside{
float: left;
width: 147px;
height: 668px;
background:url(images/template_04.gif) no-repeat;
padding-top: 232;
margin-right: -633;
}
#Container2{
width: 633;
height: 668;
margin-right: -147;
}
#Container3{
width: 486;
height: 668;
float: left;
margin-right: -147;
}
#Content{
width: 486px;
height: 353px;
background:url(images/template_05.png) no-repeat;
}
#Tussen2{
width: 486px;
height: 55px;
background:url(images/template_07.gif) no-repeat;
margin-top: 585;
}
#Bottombox{
width: 486px;
height: 177px;
background:url(images/template_08.png) no-repeat;
}
#Footer{
width: 486px;
height: 83px;
background:url(images/template_09.gif) no-repeat;
bottom: 0;
}
#Rightside{
width: 147px;
height: 668px;
background:url(images/template_06.gif) no-repeat;
margin-left: 633px;
}
edit:
VB: http://ginna.frih.net/gala/index2.php
Gewijzigd op 06/02/2006 13:16:00 door Kalle P
welke id heb je het divje gegeven waar de fout zit?
Gewijzigd op 06/02/2006 12:49:00 door Kalle P
* { padding: 0; margin: 0; }
Nu hebben ALLE elementen, standaard geen padding en margin. Je bent nu helemaal terug bij af. Je moet nu zelf nog aangeven waar je weer padding/of margin wil.
ik heb nu nog niet gelijk een oplossing voor je probleem maar ik zal er eens naar kijken
@Erik ik weet het, daarom vroeg ik het ook hier. Bedankt
position: relative;
geven.
Nope maakt geen verschil en daarnaast wordt het menu dan niet meer getoond.
**kick**