tags:

views:

45

answers:

3

Possible Duplicate:
Browser’s Default CSS

Is there a list of the default html elements styles that I can look at.

+3  A: 

The CSS specification suggests one, but every browser is different (which is why people use reset stylesheets).

David Dorward
A: 

Every browser uses different default styles.

You may want to check reset-css which sets the styles to a defined default. http://developer.yahoo.com/yui/reset/

Kissaki
A: 

One thing you can do to understand how browsers render elements by default is create your own demo page. Just make a HTML page with a bunch of HTML elements, and view it in a browser. Even better, submit it to Browser Shots and see it in a whole bunch of browsers at once.

Not sure where you can get a comprehensive list of styles for each browser, however.

Jeff