vote up 38 vote down star
85

HTML being the most widely used language (at least as a markup language) has not gotten its due credit.
Considering that it has been around for so many years, things like the FORM / INPUT controls have still remained same with no new controls added.

So at least from the existing features, do you know any that are not well known but very useful.

Of course, this question is along the lines of :

Hidden Features of JavaScript
Hidden Features of CSS
Hidden Features of C#
Hidden Features of VB.Net
Hidden Features of Java
Hidden Features of ASP.NET
Hidden Features of Python
Hidden Features of TextPad
Hidden Features of Eclipse

Do not mention features of HTML 5.0, since it is in Working Draft

Specify one feature per answer, please.

flag
1  
About HTML 5, wiki.whatwg.org/wiki/… and wiki.whatwg.org/wiki/… – cic Jun 7 at 10:52
7  
These "hidden features of xxx" questions must be nice easy ways of getting cheap rep points :) – skaffman Jun 16 at 11:59
5  
Community Wiki does not earn any reputation points :( – Binoj Antony Jun 16 at 13:49
6  
...who gets impressed by something like that? – Brandon Jun 22 at 17:48
6  
Personally, I like these questions, since they tend to feature "best practices" in the topic -- which I think is part of what an encyclopedia should be. Looking at the top three answers to this question, I learned two new things. – kdgregory Jul 8 at 13:01
show 2 more comments

35 Answers

prev 1 2
vote up 1 vote down

The   entity (non-breaking space). It is useful when you don't want your text to break into two lines where there is a space. It may be useful in table headers:

something | somthing else
very      | 
large     | 
-------------------------
bla       | bla bla bla

With   could look like this:

something&nbsp ;very&nbsp ;large | somthing else
------------------------------------------------
bla                              | bla bla bla
link|flag
1  
That's not really hidden. – Brian Sep 22 at 19:37
show 1 more comment
vote up 1 vote down

Sites like Google Reader, Googles homepage, eBay, CNN are not affraid to go against the grain and use tables for layout. Professional control's from component art for example, use them extensivly.

Although not recommended, there are some occasions such as control design, where tables are ok and will save you LOTS of hours when trying to get a section of your page right accross every browser.

You'll save loads of time.

link|flag
show 1 more comment
vote up 0 vote down

I'd only recommend keeping the sitepoint HTML reference near you.

This is seriously a must-have utility, that also exists as a Firebug extension.

Awesome.

http://reference.sitepoint.com/html

link|flag
show 1 more comment
vote up -4 vote down

stuff you should know:

  1. IE has conditionals
  2. Every default browser installation will render pages without the head or body tag. If you are byte space sensitive, they are unnecessary
  3. < input > defaults to type=text
  4. Every default browser will render pages without quotation marks around attributes without whitespace. <a id=blah style=display:none;background:blue href=site.php?q=something>link</a> will work fine.

This is because web browsers will take bad html. If you really really know what you are doing, bad html can help make your life a lot easier. Additionally, no browser developer will voluntarily break correct generation of a page because of some pedantic w3c quarrel over the semantics of some deprecated tag. The browser will continue to support it because of the existence of outdated sites, for perpetuity. Given this, utilize it.

For instance, titles can be rewritten. You can have it more then once in a document - even if the w3 says no. It can ease up design.

If you want forms to submit on "enter" but want to avoid input type=submit, then you can do this

<form>
<input>
<input type=submit style=display:none>
</form>

This does work and has always worked (I've been using this trick since 1996 (?!) ). Any other ones (single text area, coupling input near the /form etc...) only work on some subset of browsers.

You can specify tabbing order with tabindex.

You can specify an access key (some UA's will take escape codes for enter) with accesskey

anchors have target types

_blank
    The user agent should load the designated document in a new, unnamed window. 
_self
    The user agent should load the document in the same frame as the element that refers to this target. 
_parent
    The user agent should load the document into the immediate FRAMESET parent of the current frame. This value is equivalent to _self if the current frame has no parent. 
_top
    The user agent should load the document into the full, original window (thus cancelling all other frames). This value is equivalent to _self if the current frame has no parent.

Despite what designers tell you tables:

  1. Have a layout semantic built-in
  2. Will enjoy browser support for a very long time
  3. Do not get confused by any modern screen reader (The media type and groups should be used if you have this in your target audience)
  4. has a table-spacing css property for that painful cellpadding/cellspacing/border triplet issue to make the style not inline and a one type cacheable cost.
  5. will not wrap around and float to bottom on you, ever.
  6. They have a header, a body, and a footer tag for the header, body, and footer in your layout...
link|flag
5  
You fail. Tables should be banished. – Charlie Somerville Jun 27 at 7:42
1  
I bet you believe global warming is a myth and that the Atkin's diet is perfectly healthy. If I build you a house out of asbestos and tell you that it will be around for a long time and that your kids will only get cancer if they eat it, would you tell you recommend me to your friends? – Anthony Jul 23 at 10:04
1  
Um, google reader, googles home page uses tables for layout. Were talking top software engineers. Tables can be used for layout on occasions. – Sir Psycho Sep 23 at 3:02
show 2 more comments
vote up -8 vote down

Judging from the 'I didn't know that' comments, the biggest hidden feature of HTML is...

Dynamic HTML, by Danny Goodman

It's the ultimate reference guide for HTML (Yes, even more ultimate than Google!)

link|flag
show 2 more comments
prev 1 2

Your Answer

Get an OpenID
or

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