Thomas
Thomas

Reputation: 34188

What are the best practices to make a HTML5 page look same in browsers?

HTML5 comes with many new features such as new tags and many of these features are supported by the latest generation of browsers.

What are the best practices to make a HTML5 page look same in all versions of the popular browsers (Chrome, Firefox, IE, Opera, Safari)?

Upvotes: 0

Views: 133

Answers (2)

Rob
Rob

Reputation: 15150

Test. Have a copy of each and test again. If it works in IE, but not a modern browser, then your markup is wrong. So choose the browser you think is consistently correct and test there first. Chances are good that if it works in a modern browser then it will work anywhere except IE which will almost always be the exception.

Upvotes: 0

robertc
robertc

Reputation: 75707

The best practice is to not attempt to make it look the same in all browsers. Web design does not work like print design, you don't have control over the ultimate output, the user does. This is a strength of the web, not a limitation.

Upvotes: 1

Related Questions