views:

259

answers:

3

Shouldn't both be removed? or is it means we should use <small>? Why <big> is removed but <small> is not? What is the problem with <big> which is not a problem of <small>?

http://www.w3schools.com/html5/html5_reference.asp

+5  A: 

<small> is used more frequently, for footnotes and such...with <h1>, <h2> and <h3> there just wasn't a use for <big>, hence why it's removed.

Nick Craver
"<small> is used more frequently, for footnotes and such...with <h1>, <h2> and <h3>" could you give more details on this?
metal-gear-solid
This doesn't quite cut it. Tags such as `<center>` or `<font>` used to be (and from what I can tell, *still* are) much more popular than `<small>`. Yet, they have been declared as deprecated.
RegDwight
@Jitendra - Just think about daily web design, I've never needed a header when h1, h2 and h3 wouldn't do the job...but there isn't a great equivalent for the small end of things like footnotes, this is where some developers use `<small>`, I prefer a `<span>` or a `<p>`, but a lot of developers use `<small>` meaning removing it would have much more of an impact than removing `<big>`. Also keep in mind that although they're not "in the spec" browsers will probably still support both for some time.
Nick Craver
@RegDwight - I agree they should **all** be removed, don't get me wrong. I'm just illustrating why it wasn't, not that I agree with it. From the docs: "The small element now represents small print (for side comments and legal print)." http://dev.w3.org/html5/html4-differences/
Nick Craver
@Nick Craver: that quote from the docs actually supports the very point I'm trying to make. The `<small>` tag is kept because it has a semantic value (side comments and legal print), *not* because it is popular (which, again, it even isn't when compared to some of the other tags that have been dropped). Popularity has nothing to do with this.
RegDwight
A: 

You should send an email to the HTML5 working group mailing list and ask for their opinion. The email is whatwg [at] whatwg [dot] org

Marius
+15  A: 

Remember, the tags are meant to be semantic, not presentational. There is such a thing in English as "fine print". This is what the small tag represents. There is no analogous concept of "big print" except for a header, which is already covered by seven other tags.

Chuck
+1. Excellent point about semantics and clearly the best answer so far.
RegDwight
but with css we can convert any tag to small size.
metal-gear-solid