Jitendra Vyas
Jitendra Vyas

Reputation: 152667

Should I avoid tags unsupported in HTML5 if I am using XHTML 4.01 Strict?

These elements are not supported in HTML5 but are supported in XHTML:

acronym, big, tt

In the future, when I will change my document type to HTML5, then will I not need to replace or change any code to pass validation?

This is also accepted as valid code in an attempt to ease the pain for avid XHTML coders (like myself) who are used to self-closing elements:

<tag type="type" id="name"/>

The same rules apply to <meta> and other self-closing elements.

Is it a good idea to avoid HTML5 unsupported tags, If I am using XHTML 1.0 Strict now?

Upvotes: 1

Views: 768

Answers (1)

Doug Neiner
Doug Neiner

Reputation: 66191

Yes, it would be a good idea to plan ahead for HTML5 support. Check here for a list of deprecated tags and attributes to avoid.

As far as XHTML syntax (always closing tags, self closing tags, etc) you can continue to use that without worry. HTML5 can be written using standard HTML syntax or XHTML syntax, though it always remains just HTML.

Upvotes: 2

Related Questions