vote up 38 vote down star
79

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
6  
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
5  
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

1 2 next
vote up 72 vote down

Using a protocol-independent absolute path:

<img src="//domain.com/img/logo.png"/>

If the browser is viewing an page in SSL through HTTPS, then it'll request that asset with the https protocol, otherwise it'll request it with HTTP.

This prevents that awful "This Page Contains Both Secure and Non-Secure Items" error message in IE, keeping all your asset requests within the same protocol.

link|flag
6  
That’s not an HTML feature but a URL/URI feature. – Gumbo Jun 6 at 20:01
2  
d03boy, it's a relative path, relative to the protocol. – eyelidlessness Jun 6 at 20:14
6  
@Gumbo: True, it's a URI feature, but I figured it was good enough to bend the rules and include here. And I don't expect a Hidden Features of the URI Spec anytime soon. :) – Paul Irish Jun 7 at 19:16
show 4 more comments
vote up 65 vote down

The label tag logically links the label with the form element using the "for" attribute. Most browsers turn this into a link which activates the related form element.

<label for="fiscalYear">Fiscal Year</label>
<input name="fiscalYear" type="text" id="fiscalYear" />
link|flag
11  
yes, amazing how few sites actively use this. I have seen sites using js to do this... – boris callens Jun 5 at 9:33
2  
Discovered this one quite recently. – Arnis L. Jun 6 at 19:15
1  
cagdas, there aren't really hidden features in HTML, it's a specified standard. – eyelidlessness Jun 6 at 19:44
8  
To expand on the answer, one can also wrap an input with a label and omit the for attribute: <label>Fiscal Year <input name="fiscalYear" type="text" /></label> – eyelidlessness Jun 6 at 19:45
3  
+1 This is also good for screen readers and section 508 compatibility. – ya23 Jun 6 at 22:57
show 7 more comments
vote up 57 vote down

The contentEditable property for (IE, Firefox, and Safari)

<table>
    <tr>
      <td><div contenteditable="true">This text can be edited<div></td>
      <td><div contenteditable="true">This text can be edited<div></td>
    </tr>
</table>

This will make the cells editable! Go ahead, try it if you don't believe me.

link|flag
3  
The question calls for features which are not introduced by HTML5 – David Dorward Jun 5 at 9:14
1  
Works in Safari 4, too! No idea if it works in version 3, though. – Tyson Jun 5 at 9:14
12  
You should've put it as contenteditable="true" IMHO – victor hugo Jun 6 at 17:09
2  
David Dorward, It's not exactly fair to say it's introduced with HTML5, as contentEditable was introduced by MS in IE 5.5, but yes it hasn't been standardized until HTML5; Tyson & Steve, contentEditable was introduced to Safari in version 2.0, but many important formatting methods weren't added until 3.x; Victor H Valle, depends on your doctype. HTML 4 should expand it to ="true" when collapsed. – eyelidlessness Jun 6 at 19:53
show 8 more comments
vote up 48 vote down

My favourite bit is the base tag, which is a life saver if you want to use routing or URL rewriting...

Let's say you are located at:

www.anypage.com/folder/subfolder/

The following is code and results for links from this page.

Regular Anchor:

<a href="test.html">Click here</a>

Leads to

www.anypage.com/folder/subfolder/test.html

Now if you add base tag

<base href="http://www.anypage.com/" />
<a href="test.html">Click here</a>

The anchor now leads to:

www.anypage.com/test.html
link|flag
35  
You could also just use /images/image.png, with a leading slash. :-) – molf Jun 5 at 7:56
11  
The base tag is a nuclear option - it's the equivalent of #define: if you don't keep track of it, make it really clear to future developers, and make it a really low level part of the site architecture it can lead to frustrating non-obvious bugs. I've never needed this, use with caution. – annakata Jun 5 at 8:11
1  
Yes, I have also seen the base tag interfere with my JavaScript when trying to dynamically load CSS files into the page. Also, a bug in IE6 requires you to explicitly close the tag (</base>), which is invalid. Conditional comments can help with that. – avdgaag Jun 5 at 15:03
2  
Note that the base URL is applied to every relative URL and not just to relative URL paths. So the reference #top would be resolved to “top” in the root index document and to “top” in the same document. – Gumbo Jun 6 at 17:25
4  
I find this extremely handy in situations where I have to 'view source' and download the HTML of a page to work with it. Once the source is downloaded, you can add a BASE element with the appropriate href attribute. This way, you can work locally after downloading only the source HTML... no need to download all the javascript, css, and images. – Andy Ford Jun 9 at 20:23
show 7 more comments
vote up 43 vote down

Specify the css for printing

<link type="text/css" rel="stylesheet" href="screen.css" media="screen" />
<link type="text/css" rel="stylesheet" href="print.css"  media="print" />
link|flag
show 2 more comments
vote up 41 vote down

Not very well known but you can specify lowsrc for images which will show the lowsrc while loading the src of the image:

<img lowsrc="monkey_preview.png" src="monkey.png" />

This is a good option for those who don't like interlaced images.

A little bit of trivia: at one point this property was obscure enough that it was used to exploit Hotmail, circa 2000.

link|flag
1  
I'm getting a fraud warning in Opera from that "exploit Hotmail" link. :o – jrista Jun 6 at 17:06
2  
It's a security website, it's safe. – Joey Robert Jun 6 at 17:24
11  
But this attribute it proprietary. msdn.microsoft.com/library/ms534138(VS.85).aspx/… – Gumbo Jun 6 at 22:05
show 3 more comments
vote up 37 vote down
<img onerror="{javascript}" />

onerror is a JavaScript event that will be fired right before the little red cross (in IE) picture be show.

You could use this to write a script that will replace the broken image by some valid alternative content, so that the user don't have to deal with the red cross issue.

On the first sight this can be seen as completely useless, because, wouldn't you know previously if the image was available in the first place? But, if you consider, there are perfect valid applications for this thing; For instance: suppose you are serving an image from a third-party resource that you don't control. Like our gravatar here in SO... it is served from http://www.gravatar.com/, a resource that the stackoverflow team doesn't control at all - although it is reliable. If http://www.gravatar.com/ get down, stackoverflow could workaround this by using onerror.

link|flag
1  
Daniel Silveira, will you clarify that this does, in fact, run onerror code in the case of broken (eg 404) images? Regardless, this is a DOM feature, not an HTML feature per se. – eyelidlessness Jun 6 at 20:16
show 5 more comments
vote up 31 vote down

Applying multiple html/css classes to one tag. Same post here

<p class="Foo Bar BlackBg"> Foo, Bar and BlackBg are css classes</p>
link|flag
10  
Those are HTML classes, not CSS classes. CSS doesn't have classes (it has class selectors). HTML classes are usful for things other than CSS. – David Dorward Jun 5 at 9:10
6  
Wow! I simply cannot get over the fact that people find this to be a "hidden" feature. Boy do I feel stupid about posting some "really hidden" features because people who upvoted this will probably not even come close to fathoming what extending a DTD means. – aleemb Jun 5 at 11:35
3  
d03boy, p.foo, p.var is not the same as p.foo.bar. The former selects any paragraph with either the class "foo" or "var", the latter selects an paragraph with both classes. – eyelidlessness Jun 6 at 20:59
1  
The thing regarding HTML classes is a good point, because it brings me onto a point- html should not be made aware of css.. you 'should' be able to create html, and pass it to a designer that can implement their design without needing to change the html (not quite the case yet ;)).. so this comes down to your naming and way you use classes.. don't create classes to target css properties.. use classes to identify what the element 'is'. – meandmycode Jun 6 at 21:34
show 5 more comments
vote up 29 vote down

The button tag is the new input submit tag and a lot of people are still not familiar with it. The text in the button can for example be styled using the button tag.

<button>
    <b>Click</b><br />
    Me!
</button>

Will render a button with two lines, the first says "Click" in bold and the second says "Me!". Try it here.

link|flag
5  
Shame about it being broken in IE < 8. It is possible to work around the issues, but that can be painful, and sometimes you hit security protection running between the web server and the server side programming environment. – David Dorward Jun 5 at 9:13
2  
But IE < 8 will submit the content of the element, not its value. I believe some versions will always treat it as a successful control (even if it wasn't clicked) too. – David Dorward Jun 8 at 9:52
3  
And if you make it <button contenteditable> you can change the button text too! Points to anyone who could find a valid use for it. :) – Gavin Schultz Jul 4 at 3:04
show 3 more comments
vote up 28 vote down

I think the optgroup tag is one feature that people don't use very often. Most people I speak to don't tend to realise that it exists.

link|flag
1  
This is a neat feature I did not know about! – Chrisb Jul 27 at 15:52
show 5 more comments
vote up 24 vote down

the <dl> <dt> and <dd> items are often forgotten and they stand for Definition List, Definition Term and Definition.

They work similarly to an unordered list (<ul>) but instead of single entries it's more like a key/value list.

<dl>
  <dt>What</dt><dd>An Example</dd>
  <dt>Why</dt><dd>Examples are good</dd>
</dl>
link|flag
3  
The more interesting thing that is often forgotten is that the format is key/value/value/value/value/key/value – David Dorward Jul 23 at 9:30
show 3 more comments
vote up 22 vote down

DEL and INS to mark deleted and inserted contents:

HTML <del>sucks</del> <ins>rocks</ins>!
link|flag
2  
Definitely not used enough. – eyelidlessness Jun 6 at 20:19
show 2 more comments
vote up 21 vote down

A much underused feature is the fact that just about every element, that provides visible content on the page, can have a 'title' attribute.

Adding such an attribute causes a 'tooltip' to appear when the mouse is 'hovered' over the element, and can be used to provide non-essential - but useful - information in a way that doesn't cause the page to become too crowded. (Or it can be a way of adding information to an already crowded page)

link|flag
2  
The tooltip that appears is browser-specific. Not all browsers will display the title attribute the same. But it is a nice feature that I certainly use. – T Pops Jun 17 at 14:19
2  
The title attribute is useful, but only when used appropriately. Most browsers only render the tooltip for a few seconds before it disappears. I hate it when designers feel the need to fill up the title attribute with 3 or 4 lines of text which causes you have to mouse over, then mouse on again to read the rest of it. – nbv4 Jul 11 at 4:11
show 1 more comment
vote up 21 vote down

Not exactly hidden, but (and this is IE's fault) not enough people know about thead, tbody, tfoot for my tastes. And how many of you knew tfoot is supposed to appear above tbody in markup?

link|flag
1  
boris callens, Yeah, tbody is implied if none of thead, tbody and tfoot are present. – eyelidlessness Jun 6 at 20:12
2  
They are useful for printing because it should put the thead and tfoot at the top and bottom of each page. It's a shame there's no mechanism for repeating thead in the browser, when you have long long tables. – DisgruntledGoat Jul 9 at 19:57
show 5 more comments
vote up 20 vote down
<blink>

Must be used for anything important on the site. Most important sites wrap all of content in blink.

<marquee>

Creates a realistic scrolling effect, great for e-books etc.

Edit: Easy-up fellas, this was just an attempt at humour

link|flag
9  
What can I say? I did it for the lulz – Mark Glorie Jun 5 at 5:12
5  
Too much hate to laugh :p – Svish Jun 5 at 8:11
4  
That was brave of you. no points though – boris callens Jun 5 at 9:41
1  
blink is heavilty discouraged, unless you want to annoy users. Its support isn't perfect either. – CrazyJugglerDrummer Jun 10 at 1:23
10  
Perhaps the question ought to have specified that you shouldn't list features that we want to remain hidden. – Ben Blank Jun 22 at 18:52
show 7 more comments
vote up 18 vote down

You can use the object tag instead of an iframe to include another document in the page:

<object data="data/test.html" type="text/html" width="300" height="200">
  alt : <a href="data/test.html">test.html</a>
</object>
link|flag
22  
Which ends up working almost exactly like an iframe except that it is less well supported and has fewer features. – David Dorward Jun 5 at 8:47
5  
iframe is not deprecated in HTML 5. – Zach Jun 10 at 4:27
show 3 more comments
vote up 18 vote down

The wbr or word-break tag. From Quirksmode:

(word break) means: "The browser may insert a line break here, if it wishes." It the browser does not think a line break necessary nothing happens.

<div class="name">getElements<wbr>ByTagName()</div>

I give the browser the option of adding a line break. This won't be necessary on very large resolutions, when the table has plenty of space. On smaller resolutions, however, such strategically placed line breaks keep the table from growing larger than the window, and thus causing horizontal scrollbars.

The there is also the &shy; HTML entity mentioned on the same page. This is the same as wbr but when a break is inserted a hypen (-) is added to signify a break. Kind of like how it is done in print.

An example:

Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­Text­

link|flag
1  
Be careful because there's poor browser support on this one – SleepyCod Jun 5 at 9:13
3  
"IE8 as IE8" does not support it and it's buggy in Safari 3.0 for windows. Other than that support is pretty good. Refer to the compatibility chart in the link. – aleemb Jun 5 at 9:30
show 3 more comments
vote up 13 vote down

Colgroup tag.

<table width="100%">
    <colgroup>
        <col style="width:40%;" />
        <col style="width:60%;" />
    </colgroup>
    <thead>
        <tr>
            <td>Row 1<!--This row will have 40% width--></td>
            <td>Row 2<!--This row ill have 60% width--></td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Cell 1</td>
            <td>Cell 2</td>
        </tr>
    </tbody>
</table>
link|flag
6  
In my experience, colgroup support is flaky at best. – eyelidlessness Jun 6 at 20:16
show 1 more comment
vote up 13 vote down

The "!DOCTYPE" declaration. Don't think it's a hidden feature, but it seems it's not well known but very useful.

e.g.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
    "http://www.w3.org/TR/html4/strict.dtd">
link|flag
8  
And not to mention "mandatory for most current markup languages and without one it is impossible to reliably validate a document"... validator.w3.org/docs/help.html#faq-doctype/… – Svish Jun 5 at 8:06
1  
And using a strict doctype fixes 95% of browser inconsistencies. – DisgruntledGoat Jul 10 at 12:11
show 2 more comments
vote up 12 vote down

I recently found out about the fieldset and label tags. As above, not hidden but useful for forms.

<fieldset> explanation

<fieldset> example

link|flag
1  
Explanation: w3schools.com/TAGS/tag_fieldset.asp -- Example: w3schools.com/TAGS/… – MatrixFrog Jun 5 at 7:36
1  
Didn't know about this one. Heres the W3c spec: w3.org/TR/html401/… – MitMaro Jul 3 at 14:34
show 2 more comments
vote up 11 vote down

We all know about DTD's or Document Type Declarations (those things which make you page fail with the W3C validator). However, it is possible to extend the DTDs by declaring an attribute list for custom elements.

For example, the W3C validator will fail for this page because of behavior="mouseover" added to the <p> tag. However, you can make it pass by doing this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
[
<!ATTLIST p behavior CDATA #IMPLIED>
]>

See more at about Custom DTDs at QuirksMode.

link|flag
3  
Of course, this makes it "Valid: Your custom markup language" and not "XHTML 1.0 Transitional" – David Dorward Jun 5 at 14:27
1  
@eyelidlessness it only works in XHTML. Doesn't work in make-believe XHTML sent as text/HTML. – porneL Jul 9 at 19:20
show 2 more comments
vote up 9 vote down

Button as link, no javascript:

You can put any kind of file in the form action, and you have a button that acts as a link. No need to use onclick events or such. You can even open-up the file in a new window by sticking a "target" in the form. I didn't see that technique in application much.

Replace this:

<a href="myfile.pdf" target="_blank">Download file</a>

With this:

<form method="get" action="myfile.pdf" target="_blank">
<input type="submit" value="Download file">
</form>
link|flag
1  
Button won't have "Save file as" option, which may be needed by users who don't like Adobe Acrobat taking over their browser. – porneL Jul 9 at 20:01
show 2 more comments
vote up 7 vote down

If the for attribute of a <label> tag isn't specified, it is implicitly set as the first child <input>, i.e.

<label>Alias: <input name="alias" id="alias"></label>

is equivalent to

<label for="alias">Alias:</label> <input name="alias" id="alias">
link|flag
2  
But this enjoys less browser support than the for attribute – David Dorward Jun 7 at 21:42
show 3 more comments
vote up 6 vote down

<optgroup> is a great one that people often miss out on when doing segmented <select> lists.

<select>
  <optgroup label="North America">
    <option value='us'>Unite States</option>
    <option value='ca'>Canada</option>
  </optgroup>
  <optgroup label="Europe">
    <option value='fr'>France</option>
    <option value='ir'>Ireland</option>
  </optgroup>
</select>

is what you should be using instead of

<select>
  <option value=''>----North America----</option>
  <option value='us'>Unite States</option>
  <option value='ca'>Canada</option>
  <option value=''>----Europe----</option>
  <option value='fr'>France</option>
  <option value='ir'>Ireland</option>
</select>
link|flag
vote up 6 vote down

The <kbd> element for marking up for keyboard input

Ctrl+Alt+Del

link|flag
show 2 more comments
vote up 4 vote down

Simplest way to refresh the page in X seconds - META Refresh

<meta http-equiv="refresh" content="600">

The value in content signifies the seconds after which you want the page to refresh.

link|flag
6  
Of course, working out which elements need refreshing and then updating them via AJAX results in a much nicer user experience... – Steve Jun 5 at 7:45
10  
META refresh doesn't really do anything good in pages where there's also some king of user form activity, because it can interrupt user's form fill-in and discard all the work. I think there's rarely an occasion where these kind of refreshes would be best. It's just the easy way out normally. – Robert Koritnik Jun 5 at 7:48
5  
/me hates pages that refresh like that... should be banned =/ – Svish Jun 5 at 8:09
1  
Upvoted. Cause i didn't know this one. :) – Arnis L. Jun 6 at 19:26
2  
This can also be useful if set to a little less than the session timeout to notify the user that his session has timed-out and was removed. – fforw Jun 21 at 21:33
show 6 more comments
vote up 2 vote down

<html>, <head> and <body> tags are optional. If you omit them, they will be silently inserted by the parser in appropriate places. It's perfectly valid to do so in HTML (just like implied <tbody>).

HTML in theory is an SGML application. This is probably the shortest valid HTML document:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<title//<p/
link|flag
1  
If you change DOCTYPE of HTML/SGML document to XHTML/XML you will get nonsensical mix. That's quite obvious and I'm not sure why you're pointing that out. – porneL Jul 23 at 12:42
show 1 more comment
vote up 1 vote down

Special characters for math, greek,... not known very well

link|flag
7  
And not really needed in a world with UTF-8 – David Dorward Jun 5 at 8:49
2  
Not really needed, but I for one prefer &pi; to &#960; – Ant Jun 5 at 9:04
5  
I said UTF-8 not numeric character references. i.e. π – David Dorward Jun 5 at 9:12
show 3 more comments
vote up 1 vote down

A form can be submitted when you press the Enter key on a text input only if there is a submit button in the form. Try it here. It won't work if you don't change the type of the button to "submit".

link|flag
1  
This depends on the browser you are using. In HTML 2, a form containg just a text input SHOULD be submitted with enter. alanflavell.org.uk/www/formquestion.html/… – David Dorward Jun 5 at 13:17
vote up 1 vote down

My favorite hidden feature was already mentioned, which is the "base" tag. Very handy for when you have a chunk of code that has relative URLs and suddenly they all move but your page doesn't.

But one that wasn't mentioned is the list header tag <lh>. It probably wasn't mentioned because it is considered "depreciated" but most browsers still support it. I don't know why it was phased out, nearly every unordered list I make could use a header, and it feels icky just dropping a h3 tag, and it feels just incorrect to make the first list item the title of the list.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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