d4ryl3
d4ryl3

Reputation: 272

What does html5 and css3 depend on?

Do html5 and css3 functionalities depend on the browser (only)? I just need this cleared, thank you.

Upvotes: 1

Views: 126

Answers (1)

Downpour046
Downpour046

Reputation: 1671

HTML5 and CSS3 depend on recent browsers.

Certain syntax from HTML5 and CSS3 are supported in certain browsers, others not.

You don't need to "install" anything to start using either languages, they are entirely dependant on the browser supporting / being able to render the code.

for HTML5 , you need to put the following at the top of your HTML document to declare that you are using HTML5:

<!doctype HTML>

Here is a great compatibility chart to see where HTML5 and CSS3 work and on what browsers: http://www.findmebyip.com/litmus/

http://fmbip.com/

Cheers.

Upvotes: 2

Related Questions