vote up 19 vote down star
15

Yes, many web developers live and breathe HTML, but there are still tags and tricks that aren't used as often as they could be. What are some of your favorites?

flag
there is no such thing as a hidden feature of html. it's all in the W3C guidelines. no more "hidden feature of x" questions! – Darren Kopp Sep 23 '08 at 19:07
Fair enough. I've changed it to "underused" features as there are definitely pieces of HTML that people tend to ignore or aren't generally aware of – Wayne Sep 23 '08 at 19:09
2  
I would add blink, but I don't want to lose the rep :) – Lou Franco Sep 23 '08 at 19:10
Personally I'm against these polling questions also but the rest of the community seems to enjoy them. If we let "Hidden features of C#" stay then we should let this one stay also. – Outlaw Programmer Sep 23 '08 at 19:10
codeflow.org/read-the-faq/#this-is-a-poll – Florian Bösch Sep 23 '08 at 19:12
show 5 more comments

28 Answers

vote up 19 vote down

I think that <fieldset> is often overlooked. It's an easy way to group form fields together.

When presenting a large form, there are typically logical groups of data. Using a fieldset with a <legend> can visually separate the input fields, making it easier for the user.

It can also be used out side the context of a form to present an easily styled box with a header element.

See this page for an example.

link|flag
My question is - Does Fieldset belong in HTML or is it something that is best accomplished using divs/spans and CSS? – Thomas Owens Sep 23 '08 at 19:10
Never heard of this tag before. Can you edit to explain why its "underused?" – Outlaw Programmer Sep 23 '08 at 19:11
[fieldset](htmldog.com/reference/htmltags/…) is quite literally what it is - a set of form fields. I agree that it is underused. I try to split forms into related groups purely for visual ease, however they should be considered like paragraphs. – Ross Sep 23 '08 at 19:14
<fieldset> is handy because in Strict documents, you cannot have inline elements as direct children of <form> elements. <fieldset> belongs in HTML because it's nothing to do with presentation, it's about logically grouping form elements. – Jim Sep 23 '08 at 19:34
That makes sense. Thanks Jim. – Thomas Owens Sep 23 '08 at 21:43
vote up 19 vote down

These "Hidden tricks of X" threads are getting repetitive but here's a few tags that aren't used enough:

  • address - for addresses, obviously
  • dfn - for definitions
  • colgroup - can make styling tables so much easier (doesn't support background attributes however)
  • label - every input should have one
  • ins and del - content revisions should be semantic too
link|flag
The nice thing about the Hidden Features posts is that they're high profile enough to hopefully happen just once for each area they cover. – John Sheehan Sep 23 '08 at 19:28
1  
The <address> element is actually only for the contact details of the person/organisation responsible for the document, it's not intended for generic addresses. – Jim Sep 23 '08 at 19:35
Interesting to know Jim, I can see how that would make sense when in relation to the document's context. – Ross Sep 24 '08 at 19:06
Interesting that StackOverflow itself does not use <ins>/<del>, where it's perfectly applicable. I believe there were some browser issues with it (I think IE5 hid <del> content completely!), but I am sure that can be fixed with CSS. – strager Feb 16 at 1:28
1  
"<span class="diff-delete">breath</span> <span class="diff-add">breathe</span>" Ugh! Poor show SO, poor show. – Ross Feb 16 at 10:16
show 1 more comment
vote up 6 vote down

One thing that seems to me to still be pervasive in the use of HTML is overuse of non-semantic constructs, such as tag soup. Simply learning about the HTML constructs that have been around since the early days of HTML, such as ordered/unordered lists, header tags, rather than relying on the trusty (rusty) old div.

link|flag
vote up 7 vote down

I love <ins> and <del> for editing blog posts.

link|flag
vote up 4 vote down

<abbr>

link|flag
vote up 37 vote down

A bit of overlap here but I would definitely recommend reading Five XHTML Elements You Didn't Know But Were Afraid to Ask. It speaks to:

  1. <optgroup/>
  2. <label/>
  3. <fieldset/> and <legend/>
  4. <col/> and <colgroup/>
  5. <acronym/>

And provides examples of each.

link|flag
wow, I love optgroup and fieldset/legend! – Chris Marasti-Georg Sep 23 '08 at 20:13
1  
label is a great usability tool imo. – Ólafur Waage Sep 30 '08 at 22:33
acronym and abbr are often misused, partly thanks to W3C's bad descriptions. It lists WWW and HTTP among the 'abbreviations', but they're actually acronyms. – DisgruntledGoat Nov 17 '08 at 11:25
Label and Fieldset are essential for me. – EnderMB Nov 20 '08 at 15:59
I didn't encounter fieldset for years and discovered it completely by accident. – christian studer Jan 22 at 14:36
show 3 more comments
vote up 11 vote down

Definition lists are often not used to their full potential. Quite useful in adding structure to chronological or alphabetical lists, as well as the natural use for definitions. <dl> <dt> and <dd> are the code elements for the container, "term" and "definition" respectively.

link|flag
vote up 5 vote down

The word "element" is underused, even the HTML 4.01 specification states this:

Elements are not tags. Some people refer to elements as tags (e.g., "the P tag"). Remember that the element is one thing, and the tag (be it start or end tag) is another. For instance, the HEAD element is always present, even though both start and end HEAD tags may be missing in the markup.

See also: Lachy’s Log: HTML Tags.

link|flag
I find it easier to just say tag all the time, since I otherwise mix up when element and when tag is the correct word to use. – jfs Sep 24 '08 at 1:21
2  
Have you ever heard a non-technical user refer to the entire system box of a computer as "the hard drive"? That's what you sound like to others when you use the word "tag" when you mean "element". The difference between them is not hard to understand, you'd do yourself a favour to figure it out. – Jim Sep 24 '08 at 2:51
I always go with element, but I know when to say tag too! Thanks +1 – alex Mar 9 at 11:06
vote up 9 vote down

Use of the title attribute with elements, particularly images and anchors.

link|flag
I'm curious as to what this accomplishes. – Thomas Owens Sep 23 '08 at 21:44
1  
It enhances accessibility, gives you another place to put keywords for SEO purposes, and most conveniently, gives you a popup "tooltip" when you hover in most major browsers – Wayne Sep 23 '08 at 23:56
vote up 5 vote down

A few tags I find interesting are the <dfn>, <kbd>, <var> and <cite> tags, for formatting various types of text into groups browsers can understand. Maybe not useful enough to deserve the term "underused," but they're interesting and relatively unknown.

link|flag
I always get confused as to which phrase elements to use when posting code fragments. There's <code> of course, but I usually use that for blocks of code. Then you have <kbd> for input (good for keyboard shortcuts) and <samp> for sample output... – DisgruntledGoat Nov 17 '08 at 11:20
vote up 5 vote down

Already mentioned, but I dont think you can mention it enough:

It is so easy to throw in a label for each of your form fields, and it makes the usability much better. Maybe it's just me, since I've become accustomed to labels, but I like being able to click on the text next to a radio button to select that radio button.

link|flag
That bugs me too! – Kip Sep 24 '08 at 13:58
vote up 4 vote down

The scope attribute (to tell a th cell which dimension it refers to) and the caption tag, which is used as a heading for tables. I find myself constantly reminding others of their existence!

link|flag
The scope attribute is handy because you can hang styles off it using attribute selectors. For instance, you can right-align scope=row headings, but left-align scope=col headings. – Jim Sep 24 '08 at 2:53
Hey, it's you again! On this one, I agree with you. :) – Rahul Sep 24 '08 at 7:47
vote up 0 vote down

One feature that is should NOT be used more than it is being used is the "blink" tag.

link|flag
awww to bad the blink feature works only in the previews :( – Mostlyharmless Sep 23 '08 at 22:15
2  
I'm about to propose to the W3C the <seizure> tag... – Mufasa Sep 26 '08 at 18:38
vote up 6 vote down

Not enough people pay attention to using the right DocType

Per HTML and XHTML standards, a DOCTYPE (short for “document type declaration”) informs the validator which version of (X)HTML you’re using, and must appear at the very top of every web page. DOCTYPEs are a key component of compliant web pages: your markup and CSS won’t validate without them.
link|flag
Use Strict DOCTYPE! Transitional was only for (as name implies) transitional period from old presentational HTML (<font>, etc.) to CSS. Since CSS works now, everyone (except time travellers) should use Strict only. – porneL Jul 9 at 20:15
vote up 1 vote down

It's hard to say <h1> is underused, but it is very efficient, accessible, and SEO-friendly to have the company/site logo in an h1 tag, backgroud-imaged, with text stating the company/site-name within h1.

This semantically designates it clearly as the most important content on the page, and does wonders for getting your site into the search results in searches for the site name (along with, of course, the title element).

link|flag
vote up 2 vote down

I miss full browser support of the link tag. I think maybe Mozilla Seamonkey still has a 'site navigation' toolbar, which lets you navigate multipage documents easily, if they were marked up with navigation links in their headers. Latex2HTML supported them, which was pretty handy back when there when lots of web pages were still generated with that (before pdf took over for academic publication on the web).

<link rel="next" href="page2.html" />
<link rel="up" href="table_of_contents.html" />

Now that (so far as I know) no major browser supports them explicitly, it seems that the only use for these tags is in prefetch, which is still pretty important. See this DevMo article on using link tags for prefetch, for example. For adding support to firefox, there is at least one plugin available.

link|flag
1  
Opera (opera.com) has support them for a while. – Mufasa Sep 26 '08 at 18:37
1  
In Opera, go to Tools>Appearance>Toolbars and check 'Navigation Bar'. Also best to tick 'Show only when needed' so it only appears when a site uses the link tag with rel/rev. – DisgruntledGoat Nov 17 '08 at 11:31
vote up 4 vote down

The <button> tag. Much more powerful than <input type="{button|submit}">.

Though extremely poorly supported by MSIE.

link|flag
the button tag is fixed in IE8 (in IE8 standards mode) ;-) – scunliffe Sep 27 '08 at 3:18
IE6 sends all button elements and IE7 sends the innerHTML of the button clicked... Just a warning! – alex Mar 9 at 11:07
vote up 2 vote down

Usability-wise it is extremely important to always use <label> if you use input type radio or type checkbox. This lets the user click not just on the radio button or check box, but also on the caption that is next to it, which makes the clickable area for the control much bigger.

Another trick that is often forgotten is that you can have multiple submit buttons on the same form, each with a different name and caption, and that which button is pressed is sent to the server. I see javascript being used a lot to put multiple action buttons on a form, where it is often not necessary.

link|flag
vote up 0 vote down

This certainly comes under the "tricks" heading... you can have a file that works as both a Javascript file and an HTML file.

Because browsers allow external javascript files to have any file extension, you can have a file that opens in browsers as HTML but which can also be loaded as a script file:

<!-- //--><head><title>JSHTML Example 1</title><style>.code {display:none}</style></head><body><div class="code">

var a = "Variable available if page is loaded as JavaScript";

<!-- //--></div><div class="information">Visible if file is opened as HTML</div></body>

This is handy when saving data to a file that users can open from their desktop but that can also be parsed by a web page.

Here, the file "jshtml.html" calls itself as a script to show the javascript data it contains in a friendly way:

<!-- //--><head><title>JSHTML Example 2</title><style>.code {display:none}</style><script src="jshtml.html"></script></head><body onload="fn()"><div class="code">

var a = {
bees:10,
wasps:5
};

function fn() {
var msg="There are "+a.bees+" bee(s) and "+a.wasps+" wasps.";
document.getElementById("output").innerHTML=msg;
}

<!-- //--></div><div class="information" id="output"><!-- JS output --></div></body>
link|flag
Nice trick, but <div class="code">? Please don't fall prey to "divitis". A perfectly reasonable <code> element type exists. – Jim Sep 24 '08 at 18:45
vote up 4 vote down

The "rel" attribute.

Every html element can have its rel attribute set, which is extremely handy for when you're working with an existing site or webapp and need to pass an extra attribute to the element without altering its existing class or id.

link|flag
And the corresponding "rev" tag, too. – Wayne Sep 24 '08 at 16:02
Did you know that you can put multiple classes on an elements? For example, class="class1 class2 class3" – DisgruntledGoat Nov 17 '08 at 11:28
After googling rel/rev, I'm still not sure what the purpose of these are for, or what it gives you. Can someone clarify? – Jeremy Michael Cantrell Feb 17 at 0:59
Every?? I did not know this... could possibly be a good hook for Javascript. – alex Mar 9 at 11:08
vote up 3 vote down

Microformats.

Although they are not a 'feature' of HTML (rather an application of it), they add an important semantic layer on top of existing data.

link|flag
vote up 2 vote down
<blink></blink>

:)

link|flag
don't forget <marquee></marquee> – DrJokepu Feb 3 at 19:18
vote up 15 vote down

I've been marking up HTML documents for a LONG time, and this one blew me away recently. When I link to particular place in a page, section headings for example, I use the anchor tag with the name attribute:

<a name="section1"><h1>Section One</h1></a>
    <p>Content here...</p>

<a name="section2"><h1>Section Two</h1></a>
    <p>Content here...</p>

Then I refer to it like so:

<a href="foo.html#section2">See Section Two</a>

What I didn't realize, until I was researching something else in the W3C HTML standard, is that I can achieve the same thing with much less mess and typing by assigning an id attribute to the <h1> (or most any other) element. The element with the id attribute is treated as a link destination within the page, and many of my page's contents are already assigned id attributes for CSS styling and positioning:

<h1 id="section1">Section One</h1>
    <p>Content here...</p>

<h1 id="section2">Section Two</h1>
    <p>Content here...</p>

The same link works as before, but the page's markup is much cleaner:

<a href="foo.html#section2">See Section Two</a>

All modern browsers will work with this feature, and it's been part of the HTML standard since HTML 4.0 back in 1997. I've really got to spend the weekend reading the whole standard!

link|flag
This is amazing! Thank you +1 (2 if I could) – alex Mar 9 at 11:03
vote up 3 vote down

wbr: tells the browser that if it has to break a word, this is the place to do it, but otherwise is invisible.

link|flag
vote up 5 vote down

On more than one occasion I have found the <thead> and <th> elements invaluable for building tables of data. So often I see people just "bold" the first row of a table's body.

Also, it is overlooked that a table can have more than one <tbody> element. While I haven't specifically found this valuable yet, it's a cool feature just waiting to be exposed!

link|flag
The jQuery tablesorter plugin uses the <tbody>. – Tomalak Feb 15 at 23:44
vote up 0 vote down
<col align="char" char=".">

Aligns numbers in a table column to the decimal point. Much nicer than having to manually pad the data with zeroes or non-breaking spaces.

The reason it's underused... no browser support! :(

link|flag
vote up 2 vote down

I like the <wbr> tag, which can be used to break up single words across multiple lines (for instance, a very long URL.)

link|flag
vote up 1 vote down

The <noscript> tag, so you can at least provide a "this site requires JavaScript" style message to those people with scripting turned off. Better to support such users properly, of course, but the reality is that for many projects you won't have the time.

link|flag
Use progressive enhancement instead! – porneL Jul 10 at 20:08

Your Answer

Get an OpenID
or

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