Click to See Complete Forum and Search --> : Problem with css !
altafhussain
06-05-2009, 04:19 PM
I have a problem i made a site with html and css everything is right in internet explorer but when i see this site in mozilla firefox it goes wrong one div is at another div and site looks very bad so what i do for this problem please tell me about this please i have to
peachskittle
06-05-2009, 04:31 PM
You gave us absolutely no information to help you. Telling us one div is wrong in one browser and not another is not enough. There are hundreds of differences between IE and Firefox. Do you have a link? Do you at least have some code? Anything?
6StringGeek
06-05-2009, 05:22 PM
You can start by zeroing the margins/padding:
* {
margin:0;
padding:0;
}
and validating your code here: http://validator.w3.org/.
If that doesn't work you should post a link or some code.
sommardahl
06-05-2009, 05:22 PM
Do a google search for 'cross-browser css'. IE renders CSS differently than -any- other browser, so you're likely going to have to work around and hack your way to a pretty page. Also, you're probably going to need to do some 'conditional css' (another possible google search).