4
votes
What is the easiest or fastest way to make CSS render the same in all browsers
First of all you could try a reset, like some other people mentioned here, you can do a quick margin and padding reset with this piece of css:
*{margin: 0; padding: 0}
…
