Hidden Features of HTML - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T06:48:40Zhttp://stackoverflow.com/feeds/question/954327http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/954327/hidden-features-of-html38Hidden Features of HTMLBinoj Antony2009-06-05T04:58:36Z2009-10-06T07:45:00Z
<p>HTML being the most widely used language (at least as a markup language) has not gotten its due credit. <br/>
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.</p>
<p>So at least from the existing features, do you know any that are not well known but very useful.</p>
<p>Of course, this question is along the lines of :</p>
<p><a href="http://stackoverflow.com/questions/61088">Hidden Features of JavaScript</a><br />
<a href="http://stackoverflow.com/questions/628407">Hidden Features of CSS</a><br/>
<a href="http://stackoverflow.com/questions/9033">Hidden Features of C#</a><br />
<a href="http://stackoverflow.com/questions/102084">Hidden Features of VB.Net</a><br />
<a href="http://stackoverflow.com/questions/15496">Hidden Features of Java</a><br />
<a href="http://stackoverflow.com/questions/54929">Hidden Features of ASP.NET</a><br />
<a href="http://stackoverflow.com/questions/101268">Hidden Features of Python</a><br />
<a href="http://stackoverflow.com/questions/605439">Hidden Features of TextPad</a><br/>
<a href="http://stackoverflow.com/questions/54886">Hidden Features of Eclipse</a></p>
<p>Do not mention features of HTML 5.0, since it is in <a href="http://stackoverflow.com/questions/605439">Working Draft</a><br/></p>
<p><strong>Specify one feature per answer, please</strong>.<br/></p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954339#95433913Answer by Peter for Hidden Features of HTMLPeter2009-06-05T05:02:34Z2009-07-09T19:49:24Z<p>The <a href="http://www.w3schools.com/tags/tag%5FDOCTYPE.asp" rel="nofollow">"!DOCTYPE" declaration</a>.
Don't think it's a hidden feature, but it seems it's not well known but very useful.</p>
<p>e.g.</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954346#9543465Answer by Binoj Antony for Hidden Features of HTMLBinoj Antony2009-06-05T05:05:47Z2009-06-05T07:55:27Z<p>Simplest way to refresh the page in X seconds - <a href="http://webdesign.about.com/od/metataglibraries/a/aa080300a.htm" rel="nofollow">META Refresh</a></p>
<pre><code><meta http-equiv="refresh" content="600">
</code></pre>
<p>The value in content signifies the seconds after which you want the page to refresh.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954350#95435012Answer by Michael Sharek for Hidden Features of HTMLMichael Sharek2009-06-05T05:07:31Z2009-06-22T18:16:01Z<p>I recently found out about the fieldset and label tags. As above, not hidden but useful for forms.</p>
<p><a href="http://www.w3schools.com/TAGS/tag%5Ffieldset.asp" rel="nofollow"><fieldset> explanation</a></p>
<p><a href="http://www.w3schools.com/TAGS/tryit.asp?filename=tryhtml%5Ffieldset" rel="nofollow"><fieldset> example</a></p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954351#95435122Answer by Mark Glorie for Hidden Features of HTMLMark Glorie2009-06-05T05:08:35Z2009-10-06T07:45:00Z<pre><code><blink>
</code></pre>
<p>Must be used for anything important on the site. Most important sites wrap all of content in blink.</p>
<pre><code><marquee>
</code></pre>
<p>Creates a realistic scrolling effect, great for e-books etc. </p>
<p><em>Edit: Easy-up fellas, this was just an attempt at humour</em></p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954361#9543611Answer by Peter for Hidden Features of HTMLPeter2009-06-05T05:15:07Z2009-06-05T05:15:07Z<p><a href="http://de.selfhtml.org/html/referenz/zeichen.htm" rel="nofollow">Special characters</a> for math, greek,... not known very well</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954368#95436819Answer by Zach for Hidden Features of HTMLZach2009-06-05T05:19:15Z2009-06-05T05:19:15Z<p>You can use the <a href="http://joliclic.free.fr/html/object-tag/en/" rel="nofollow"><code>object</code></a> tag instead of an <code>iframe</code> to include another document in the page:</p>
<pre><code><object data="data/test.html" type="text/html" width="300" height="200">
alt : <a href="data/test.html">test.html</a>
</object>
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954474#95447466Answer by Brian Reiter for Hidden Features of HTMLBrian Reiter2009-06-05T06:16:45Z2009-06-06T19:09:28Z<p>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.</p>
<pre><code><label for="fiscalYear">Fiscal Year</label>
<input name="fiscalYear" type="text" id="fiscalYear" />
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954692#95469243Answer by Binoj Antony for Hidden Features of HTMLBinoj Antony2009-06-05T07:40:23Z2009-06-16T11:57:30Z<p>Specify the css for printing </p>
<pre><code><link type="text/css" rel="stylesheet" href="screen.css" media="screen" />
<link type="text/css" rel="stylesheet" href="print.css" media="print" />
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954698#95469848Answer by Sohnee for Hidden Features of HTMLSohnee2009-06-05T07:41:41Z2009-09-22T19:34:33Z<p>My favourite bit is the base tag, which is a life saver if you want to use routing or URL rewriting...</p>
<p>Let's say you are located at:</p>
<pre><code>www.anypage.com/folder/subfolder/
</code></pre>
<p>The following is code and results for links from this page.</p>
<p><strong>Regular Anchor:</strong></p>
<pre><code><a href="test.html">Click here</a>
</code></pre>
<p>Leads to </p>
<pre><code>www.anypage.com/folder/subfolder/test.html
</code></pre>
<p>Now if you add base tag</p>
<pre><code><base href="http://www.anypage.com/" />
<a href="test.html">Click here</a>
</code></pre>
<p>The anchor now leads to:</p>
<pre><code>www.anypage.com/test.html
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954746#95474622Answer by belugabob for Hidden Features of HTMLbelugabob2009-06-05T08:00:13Z2009-06-05T08:00:13Z<p>A much underused feature is the fact that just about every element, that provides visible content on the page, can have a 'title' attribute.</p>
<p>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)</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954763#954763-6Answer by belugabob for Hidden Features of HTMLbelugabob2009-06-05T08:05:36Z2009-06-05T08:05:36Z<p>Judging from the 'I didn't know that' comments, the biggest hidden feature of HTML is...</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0596527403" rel="nofollow">Dynamic HTML, by Danny Goodman</a></p>
<p>It's the ultimate reference guide for HTML (Yes, even more ultimate than Google!)</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954800#95480021Answer by annakata for Hidden Features of HTMLannakata2009-06-05T08:16:54Z2009-06-05T08:16:54Z<p>Not exactly hidden, but (and this is IE's fault) not enough people know about <a href="http://www.w3.org/TR/html401/struct/tables.html#h-11.2.3" rel="nofollow">thead, tbody, tfoot</a> for my tastes. And how many of you knew tfoot is supposed to appear <em>above</em> tbody in markup?</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954843#95484344Answer by aleemb for Hidden Features of HTMLaleemb2009-06-05T08:36:20Z2009-06-05T08:36:20Z<p>Not very well known but you can specify <code>lowsrc</code> for images which will show the <code>lowsrc</code> while loading the <code>src</code> of the image:</p>
<pre><code><img lowsrc="monkey_preview.png" src="monkey.png" />
</code></pre>
<p>This is a good option for those who don't like <a href="http://www.codinghorror.com/blog/archives/000468.html" rel="nofollow">interlaced</a> images.</p>
<p>A little bit of trivia: at one point this property was obscure enough that it was used to <a href="http://seclists.org/bugtraq/2000/Jan/0012.html" rel="nofollow">exploit Hotmail</a>, circa 2000.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954881#95488131Answer by Binoj Antony for Hidden Features of HTMLBinoj Antony2009-06-05T08:48:39Z2009-06-15T15:08:11Z<p>Applying multiple html/css classes to one tag. Same post <a href="http://stackoverflow.com/questions/628407/css-hidden-features/954669#954669">here</a> </p>
<pre><code><p class="Foo Bar BlackBg"> Foo, Bar and BlackBg are css classes</p>
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954904#95490461Answer by aleemb for Hidden Features of HTMLaleemb2009-06-05T08:55:05Z2009-08-28T01:45:52Z<p>The <strong>contentEditable</strong> property for (IE, Firefox, and Safari)</p>
<pre><code><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>
</code></pre>
<p>This will make the cells editable! Go ahead, <a href="http://www.w3schools.com/tags/tryit.asp?filename=tryhtml%5Ftable%5Ftest" rel="nofollow">try it</a> if you don't believe me.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954927#95492730Answer by aleemb for Hidden Features of HTMLaleemb2009-06-05T09:01:01Z2009-06-05T09:01:01Z<p>The <strong><a href="http://www.w3schools.com/tags/tag%5Fbutton.asp" rel="nofollow">button</a></strong> tag is the new <code>input submit</code> 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.</p>
<pre><code><button>
<b>Click</b><br />
Me!
</button>
</code></pre>
<p>Will render a button with two lines, the first says "<strong>Click</strong>" in bold and the second says "Me!". Try it <a href="http://www.w3schools.com/tags/tryit.asp?filename=tryhtml%5Fbutton%5Ftest" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954937#95493719Answer by aleemb for Hidden Features of HTMLaleemb2009-06-05T09:04:59Z2009-06-05T09:04:59Z<p>The <code>wbr</code> or <a href="http://www.quirksmode.org/oddsandends/wbr.html" rel="nofollow">word-break</a> tag. From Quirksmode:</p>
<blockquote>
<p> (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.</p>
<pre><code><div class="name">getElements<wbr>ByTagName()</div>
</code></pre>
<p>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.</p>
</blockquote>
<p>The there is also the <strong><code>&shy;</code></strong> HTML entity mentioned on the same page. This is the same as <code>wbr</code> but when a break is inserted a hypen (<code>-</code>) is added to signify a break. Kind of like how it is done in print.</p>
<p>An example:</p>
<p>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­</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954962#9549620Answer by SleepyCod for Hidden Features of HTMLSleepyCod2009-06-05T09:12:28Z2009-06-05T09:12:28Z<p>I'd only recommend keeping the sitepoint HTML reference near you.</p>
<p>This is seriously a must-have utility, that also exists as a Firebug extension.</p>
<p>Awesome.</p>
<p><a href="http://reference.sitepoint.com/html" rel="nofollow">http://reference.sitepoint.com/html</a></p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954969#95496911Answer by aleemb for Hidden Features of HTMLaleemb2009-06-05T09:14:34Z2009-07-09T19:48:10Z<p>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 <strong>DTD</strong>s by declaring an attribute list for custom elements.</p>
<p>For example, the W3C validator will <a href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.quirksmode.org%2Foddsandends%2Fdtd.html" rel="nofollow">fail for this page</a> because of <code>behavior="mouseover"</code> added to the <code><p></code> tag. However, you can make it pass by doing this:</p>
<pre><code><!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>
]>
</code></pre>
<p>See more at about <a href="http://www.quirksmode.org/oddsandends/dtd.html" rel="nofollow">Custom DTDs at QuirksMode</a>.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/954978#9549781Answer by Fabien Ménager for Hidden Features of HTMLFabien Ménager2009-06-05T09:17:00Z2009-06-05T09:17:00Z<p>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 <a href="http://www.w3schools.com/js/tryit.asp?filename=try%5Fdom%5Fform%5Fsubmit" rel="nofollow">here</a>. It won't work if you don't change the type of the button to "submit".</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/955046#95504630Answer by RichardOD for Hidden Features of HTMLRichardOD2009-06-05T09:38:06Z2009-06-05T09:38:06Z<p>I think the <a href="http://www.w3schools.com/tags/tag%5Foptgroup.asp" rel="nofollow">optgroup tag</a> is one feature that people don't use very often. Most people I speak to don't tend to realise that it exists.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/960111#96011173Answer by Paul Irish for Hidden Features of HTMLPaul Irish2009-06-06T17:00:42Z2009-06-06T17:00:42Z<p>Using a protocol-independent absolute path:</p>
<pre><code><img src="//domain.com/img/logo.png"/>
</code></pre>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/960139#96013938Answer by Daniel Silveira for Hidden Features of HTMLDaniel Silveira2009-06-06T17:20:13Z2009-06-22T17:53:37Z<pre><code><img onerror="{javascript}" />
</code></pre>
<p><code>onerror</code> is a JavaScript event that will be fired right before the little red cross (in IE) picture be show. </p>
<p>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.</p>
<p>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 <a href="http://www.gravatar.com/" rel="nofollow">http://www.gravatar.com/</a>, a resource that the stackoverflow team doesn't control at all - although it is reliable. If <a href="http://www.gravatar.com/" rel="nofollow">http://www.gravatar.com/</a> get down, stackoverflow could workaround this by using <code>onerror</code>.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/960344#96034413Answer by çağdaş for Hidden Features of HTMLçağdaş2009-06-06T19:24:07Z2009-06-06T19:24:07Z<p><a href="http://www.w3schools.com/tags/tag%5Fcolgroup.asp" rel="nofollow">Colgroup tag</a>.</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/960345#9603457Answer by orlandu63 for Hidden Features of HTMLorlandu632009-06-06T19:24:37Z2009-06-06T20:18:35Z<p>If the <code>for</code> attribute of a <code><label></code> tag isn't specified, it is implicitly set as the first child <code><input></code>, i.e.</p>
<pre><code><label>Alias: <input name="alias" id="alias"></label>
</code></pre>
<p>is equivalent to</p>
<pre><code><label for="alias">Alias:</label> <input name="alias" id="alias">
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/960382#96038222Answer by Gumbo for Hidden Features of HTMLGumbo2009-06-06T19:43:57Z2009-06-06T19:43:57Z<p><a href="http://www.w3.org/TR/html401/struct/text.html#edef-del" rel="nofollow"><code>DEL</code></a> and <a href="http://www.w3.org/TR/html401/struct/text.html#edef-ins" rel="nofollow"><code>INS</code></a> to mark deleted and inserted contents:</p>
<pre><code>HTML <del>sucks</del> <ins>rocks</ins>!
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/960408#96040824Answer by Jehiah for Hidden Features of HTMLJehiah2009-06-06T19:58:36Z2009-06-17T04:52:48Z<p>the <code><dl></code> <code><dt></code> and <code><dd></code> items are often forgotten and they stand for Definition List, Definition Term and Definition. </p>
<p>They work similarly to an unordered list (<code><ul></code>) but instead of single entries it's more like a key/value list.</p>
<pre><code><dl>
<dt>What</dt><dd>An Example</dd>
<dt>Why</dt><dd>Examples are good</dd>
</dl>
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/1025677#1025677-5Answer by unknown (yahoo) for Hidden Features of HTMLunknown (yahoo)2009-06-22T06:12:23Z2009-06-22T06:20:47Z<p>stuff you should know:</p>
<ol>
<li><a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">IE has conditionals</a></li>
<li>Every default browser installation will render pages without the head or body tag. If you are byte space sensitive, they are unnecessary</li>
<li>< input > defaults to type=text</li>
<li>Every default browser will render pages without quotation marks around attributes without whitespace. <code><a id=blah style=display:none;background:blue href=site.php?q=something>link</a></code> will work fine.</li>
</ol>
<p>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.</p>
<p>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.</p>
<p>If you want forms to submit on "enter" but want to avoid input type=submit, then you can do this</p>
<pre><code><form>
<input>
<input type=submit style=display:none>
</form>
</code></pre>
<p>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.</p>
<p>You can specify tabbing order with <strong>tabindex</strong>.</p>
<p>You can specify an access key (some UA's will take escape codes for enter) with <strong>accesskey</strong></p>
<p>anchors have target types</p>
<pre><code>_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.
</code></pre>
<p>Despite what designers tell you tables:</p>
<ol>
<li>Have a layout semantic built-in</li>
<li>Will enjoy browser support for a
very long time </li>
<li>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)</li>
<li>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.</li>
<li>will not wrap around and float to bottom on you, ever.</li>
<li>They have a header, a body, and a footer tag for the header, body, and footer in your layout...</li>
</ol>
http://stackoverflow.com/questions/954327/hidden-features-of-html/1025709#102570910Answer by Wadih M. for Hidden Features of HTMLWadih M.2009-06-22T06:26:13Z2009-06-22T06:26:13Z<p><strong>Button as link, no javascript</strong>:</p>
<p>You can put any kind of file in the <strong>form</strong> 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.</p>
<p>Replace this:</p>
<pre><code><a href="myfile.pdf" target="_blank">Download file</a>
</code></pre>
<p>With this:</p>
<pre><code><form method="get" action="myfile.pdf" target="_blank">
<input type="submit" value="Download file">
</form>
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/1105987#11059872Answer by porneL for Hidden Features of HTMLporneL2009-07-09T19:28:24Z2009-07-09T19:28:24Z<p><code><html></code>, <code><head></code> and <code><body></code> tags are optional. If you omit them, they will be silently inserted by the parser in appropriate places. It's <em>perfectly valid</em> to do so in HTML (just like implied <code><tbody></code>).</p>
<p>HTML in theory is an SGML application. This is probably the shortest <em>valid</em> HTML document:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<title//<p/
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/1170629#11706297Answer by Justin Johnson for Hidden Features of HTMLJustin Johnson2009-07-23T09:27:06Z2009-07-23T09:27:06Z<p><a href="http://www.w3schools.com/TAGS/tag%5Foptgroup.asp" rel="nofollow"><code><optgroup></code></a> is a great one that people often miss out on when doing segmented <code><select></code> lists. </p>
<pre><code><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>
</code></pre>
<p>is what you should be using instead of</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/1170799#11707991Answer by Anthony for Hidden Features of HTMLAnthony2009-07-23T10:08:56Z2009-07-23T10:08:56Z<p>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.</p>
<p>But one that wasn't mentioned is the list header tag <code><lh></code>. 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.</p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/1188904#11889041Answer by Kiewic for Hidden Features of HTMLKiewic2009-07-27T15:38:27Z2009-09-22T20:33:56Z<p>The <strong><code>&nbsp;</code></strong> 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:</p>
<pre><code>something | somthing else
very |
large |
-------------------------
bla | bla bla bla
</code></pre>
<p>With <code>&nbsp;</code> could look like this:</p>
<pre><code>something&nbsp ;very&nbsp ;large | somthing else
------------------------------------------------
bla | bla bla bla
</code></pre>
http://stackoverflow.com/questions/954327/hidden-features-of-html/1462193#14621939Answer by Russ Cam for Hidden Features of HTMLRuss Cam2009-09-22T19:45:32Z2009-09-22T19:45:32Z<p>The <code><kbd></code> element for marking up for keyboard input</p>
<p><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>Del</kbd></p>
http://stackoverflow.com/questions/954327/hidden-features-of-html/1463772#14637720Answer by Sir Psycho for Hidden Features of HTMLSir Psycho2009-09-23T03:09:11Z2009-09-23T03:09:11Z<p>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.</p>
<p>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.</p>
<p>You'll save loads of time.</p>