Forum Moderators: not2easy
I just finished my home page and was using IE to view it as i went. Just when everything was right i thought i would check it out in firefox. It looks good but 3 images are about 10-20px to far up which makes it look gay.
Is there a work around for this or should i go back to tables? I am using divs and relative positioning by the way :)
Cheers
If you read the
Charter [webmasterworld.com] for the css forum, it will explain to you how to post your code for viewing.
also, it is best not to use IE first when doing your work. Its always best to use FF etc.. instead, then tweak for IE.
Make sure before you post code that all validates first.
Of course, when the time comes that it's necessary to hack, just curse IE and hack away :)
P.S.: as an aside, the * in CSS does something different, and is an allowable selector - it sets -all- selectors (all elements.) Its usual use is to reset margin and padding differences between browsers.
So if you went like this:
* {margin: 0px;
padding: 0px;
border: 0px;
}
It would set all of those to 0px's through the whole page. Then as you go forward wtih your styles you can add them as you wish and where you wish.