vote up 0 vote down star

If some xhtml tag are presentational but valid in W3C then if i use then what is negative point of using those Tags in terms of semantic, code maintanance. I'm talking about b, big, br, hr, i, and small.Are all presentational tags deprecated?

flag

62% accept rate
More or less answered here: stackoverflow.com/questions/1577987/… – thephpdeveloper Nov 4 at 3:22

3 Answers

vote up 0 vote down

Hi!

In short: There is no real negative point to using those tags.

To answer more fully: The presentation elements you listed are all indeed valid in XHTML and NOT depreciated: big, i, small, sub, tt and hr.

The only downside to using them is your own site's maintainability: It is easier to maintain/change a website when all the presentational elements are stored away from formatting in CSS.

So, apart from the possibility of more work for you (and anyone else who works on the website), there aren't any real negative points.

Please note: br is NOT presentational, it is considered formatting, like p and h1.

link|flag
You mean br is semantic, like p and h1. And so it is. It means a semantic line break such as the end of a line of poetry. It's hard to think of valid uses outside of poetry though. – Alohci Nov 5 at 1:16
vote up 0 vote down

Phrase elements like <strong> and <em> are more semantically correct and are able to achieve richer effect through CSS (rather than simply bold or italic).

These elements also takes standard attributes and event attributes.

And yes, elements: b, big, br, hr, i, and small are deprecating and not supported in HTML5.

Edit: Thanks @Alohci for correction.

link|flag
1  
Actually b, br, hr, i and small are all conforming (i.e. valid) in HTML5. Of that list only "big" is obsolete. The full list of obsolete elements in HTML5 is available at whatwg.org/specs/web-apps/… – Alohci Nov 5 at 1:02
vote up 0 vote down

Presentational markup tags are deprecated in current HTML and XHTML recommendations and are illegal in HTML 5.

CSS is preferred over presentational markup.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.