Can HTML5 elements be used with older browsers?

I think about things such as <header>, <footer>, <article>, <section>and HTML5 document.

Is there any use for developing pages that way? What will the old browsers look like? Can they be checked?

I'm just not sure how backward these things are compatible.

+5
source share
5 answers

You asked a couple of questions in your post:

Is there any use for page development [using HTML5]?

Yes

Using the new semantic network, you get semantics. You give meaning to your data, which can then be done to do wonderful things.

?

HTML , HTML , , ( - ). (: FF, Safari, Opera, Chrome) , , HTML5:

section, header, footer, nav, article
{
  display: block;
}

, , , * cough * IE * cough * ( , IE dev - HTML).

?

...

HTML5 , - HTML5.

+2

- - modernizr, javascript , , html5/css3 , , , (, , , , , .

Modernizr

+6

, , , :

HTML5. , .

+2

, - HTML 5 , , , , .

, , , , - User-Agent ..

There's a great guide, Dive Into HTML 5 , which mainly discusses this issue.

+1
source

Yes, html5 is a universal standard, and therefore most (except IE) support it. In addition, you can put flash memory in video tags if the video is not supported, and you can configure the library as jquery as a backup if html5 is not supported.

0
source

All Articles