Hidden Features of HTML - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T06:48:40Z http://stackoverflow.com/feeds/question/954327 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/954327/hidden-features-of-html 38 Hidden Features of HTML Binoj Antony 2009-06-05T04:58:36Z 2009-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#954339 13 Answer by Peter for Hidden Features of HTML Peter 2009-06-05T05:02:34Z 2009-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>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/954346#954346 5 Answer by Binoj Antony for Hidden Features of HTML Binoj Antony 2009-06-05T05:05:47Z 2009-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>&lt;meta http-equiv="refresh" content="600"&gt; </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#954350 12 Answer by Michael Sharek for Hidden Features of HTML Michael Sharek 2009-06-05T05:07:31Z 2009-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">&lt;fieldset> explanation</a></p> <p><a href="http://www.w3schools.com/TAGS/tryit.asp?filename=tryhtml%5Ffieldset" rel="nofollow">&lt;fieldset> example</a></p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954351#954351 22 Answer by Mark Glorie for Hidden Features of HTML Mark Glorie 2009-06-05T05:08:35Z 2009-10-06T07:45:00Z <pre><code>&lt;blink&gt; </code></pre> <p>Must be used for anything important on the site. Most important sites wrap all of content in blink.</p> <pre><code>&lt;marquee&gt; </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#954361 1 Answer by Peter for Hidden Features of HTML Peter 2009-06-05T05:15:07Z 2009-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#954368 19 Answer by Zach for Hidden Features of HTML Zach 2009-06-05T05:19:15Z 2009-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>&lt;object data="data/test.html" type="text/html" width="300" height="200"&gt; alt : &lt;a href="data/test.html"&gt;test.html&lt;/a&gt; &lt;/object&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/954474#954474 66 Answer by Brian Reiter for Hidden Features of HTML Brian Reiter 2009-06-05T06:16:45Z 2009-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>&lt;label for="fiscalYear"&gt;Fiscal Year&lt;/label&gt; &lt;input name="fiscalYear" type="text" id="fiscalYear" /&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/954692#954692 43 Answer by Binoj Antony for Hidden Features of HTML Binoj Antony 2009-06-05T07:40:23Z 2009-06-16T11:57:30Z <p>Specify the css for printing </p> <pre><code>&lt;link type="text/css" rel="stylesheet" href="screen.css" media="screen" /&gt; &lt;link type="text/css" rel="stylesheet" href="print.css" media="print" /&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/954698#954698 48 Answer by Sohnee for Hidden Features of HTML Sohnee 2009-06-05T07:41:41Z 2009-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>&lt;a href="test.html"&gt;Click here&lt;/a&gt; </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>&lt;base href="http://www.anypage.com/" /&gt; &lt;a href="test.html"&gt;Click here&lt;/a&gt; </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#954746 22 Answer by belugabob for Hidden Features of HTML belugabob 2009-06-05T08:00:13Z 2009-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 -6 Answer by belugabob for Hidden Features of HTML belugabob 2009-06-05T08:05:36Z 2009-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#954800 21 Answer by annakata for Hidden Features of HTML annakata 2009-06-05T08:16:54Z 2009-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#954843 44 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T08:36:20Z 2009-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>&lt;img lowsrc="monkey_preview.png" src="monkey.png" /&gt; </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#954881 31 Answer by Binoj Antony for Hidden Features of HTML Binoj Antony 2009-06-05T08:48:39Z 2009-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>&lt;p class="Foo Bar BlackBg"&gt; Foo, Bar and BlackBg are css classes&lt;/p&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/954904#954904 61 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T08:55:05Z 2009-08-28T01:45:52Z <p>The <strong>contentEditable</strong> property for (IE, Firefox, and Safari)</p> <pre><code>&lt;table&gt; &lt;tr&gt; &lt;td&gt;&lt;div contenteditable="true"&gt;This text can be edited&lt;div&gt;&lt;/td&gt; &lt;td&gt;&lt;div contenteditable="true"&gt;This text can be edited&lt;div&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; </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#954927 30 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T09:01:01Z 2009-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>&lt;button&gt; &lt;b&gt;Click&lt;/b&gt;&lt;br /&gt; Me! &lt;/button&gt; </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#954937 19 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T09:04:59Z 2009-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>&lt;div class="name"&gt;getElements&lt;wbr&gt;ByTagName()&lt;/div&gt; </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>&amp;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&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;Text&shy;</p> http://stackoverflow.com/questions/954327/hidden-features-of-html/954962#954962 0 Answer by SleepyCod for Hidden Features of HTML SleepyCod 2009-06-05T09:12:28Z 2009-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#954969 11 Answer by aleemb for Hidden Features of HTML aleemb 2009-06-05T09:14:34Z 2009-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>&lt;p&gt;</code> tag. However, you can make it pass by doing this:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" [ &lt;!ATTLIST p behavior CDATA #IMPLIED&gt; ]&gt; </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#954978 1 Answer by Fabien Ménager for Hidden Features of HTML Fabien Ménager 2009-06-05T09:17:00Z 2009-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#955046 30 Answer by RichardOD for Hidden Features of HTML RichardOD 2009-06-05T09:38:06Z 2009-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#960111 73 Answer by Paul Irish for Hidden Features of HTML Paul Irish 2009-06-06T17:00:42Z 2009-06-06T17:00:42Z <p>Using a protocol-independent absolute path:</p> <pre><code>&lt;img src="//domain.com/img/logo.png"/&gt; </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#960139 38 Answer by Daniel Silveira for Hidden Features of HTML Daniel Silveira 2009-06-06T17:20:13Z 2009-06-22T17:53:37Z <pre><code>&lt;img onerror="{javascript}" /&gt; </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#960344 13 Answer by çağdaş for Hidden Features of HTML çağdaş 2009-06-06T19:24:07Z 2009-06-06T19:24:07Z <p><a href="http://www.w3schools.com/tags/tag%5Fcolgroup.asp" rel="nofollow">Colgroup tag</a>.</p> <pre><code>&lt;table width="100%"&gt; &lt;colgroup&gt; &lt;col style="width:40%;" /&gt; &lt;col style="width:60%;" /&gt; &lt;/colgroup&gt; &lt;thead&gt; &lt;tr&gt; &lt;td&gt;Row 1&lt;!--This row will have 40% width--&gt;&lt;/td&gt; &lt;td&gt;Row 2&lt;!--This row ill have 60% width--&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;Cell 1&lt;/td&gt; &lt;td&gt;Cell 2&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/960345#960345 7 Answer by orlandu63 for Hidden Features of HTML orlandu63 2009-06-06T19:24:37Z 2009-06-06T20:18:35Z <p>If the <code>for</code> attribute of a <code>&lt;label&gt;</code> tag isn't specified, it is implicitly set as the first child <code>&lt;input&gt;</code>, i.e.</p> <pre><code>&lt;label&gt;Alias: &lt;input name="alias" id="alias"&gt;&lt;/label&gt; </code></pre> <p>is equivalent to</p> <pre><code>&lt;label for="alias"&gt;Alias:&lt;/label&gt; &lt;input name="alias" id="alias"&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/960382#960382 22 Answer by Gumbo for Hidden Features of HTML Gumbo 2009-06-06T19:43:57Z 2009-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 &lt;del&gt;sucks&lt;/del&gt; &lt;ins&gt;rocks&lt;/ins&gt;! </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/960408#960408 24 Answer by Jehiah for Hidden Features of HTML Jehiah 2009-06-06T19:58:36Z 2009-06-17T04:52:48Z <p>the <code>&lt;dl&gt;</code> <code>&lt;dt&gt;</code> and <code>&lt;dd&gt;</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>&lt;ul&gt;</code>) but instead of single entries it's more like a key/value list.</p> <pre><code>&lt;dl&gt; &lt;dt&gt;What&lt;/dt&gt;&lt;dd&gt;An Example&lt;/dd&gt; &lt;dt&gt;Why&lt;/dt&gt;&lt;dd&gt;Examples are good&lt;/dd&gt; &lt;/dl&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/1025677#1025677 -5 Answer by unknown (yahoo) for Hidden Features of HTML unknown (yahoo) 2009-06-22T06:12:23Z 2009-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>&lt; input > defaults to type=text</li> <li>Every default browser will render pages without quotation marks around attributes without whitespace. <code>&lt;a id=blah style=display:none;background:blue href=site.php?q=something&gt;link&lt;/a&gt;</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>&lt;form&gt; &lt;input&gt; &lt;input type=submit style=display:none&gt; &lt;/form&gt; </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#1025709 10 Answer by Wadih M. for Hidden Features of HTML Wadih M. 2009-06-22T06:26:13Z 2009-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>&lt;a href="myfile.pdf" target="_blank"&gt;Download file&lt;/a&gt; </code></pre> <p>With this:</p> <pre><code>&lt;form method="get" action="myfile.pdf" target="_blank"&gt; &lt;input type="submit" value="Download file"&gt; &lt;/form&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/1105987#1105987 2 Answer by porneL for Hidden Features of HTML porneL 2009-07-09T19:28:24Z 2009-07-09T19:28:24Z <p><code>&lt;html&gt;</code>, <code>&lt;head&gt;</code> and <code>&lt;body&gt;</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>&lt;tbody&gt;</code>).</p> <p>HTML in theory is an SGML application. This is probably the shortest <em>valid</em> HTML document:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"&gt; &lt;title//&lt;p/ </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/1170629#1170629 7 Answer by Justin Johnson for Hidden Features of HTML Justin Johnson 2009-07-23T09:27:06Z 2009-07-23T09:27:06Z <p><a href="http://www.w3schools.com/TAGS/tag%5Foptgroup.asp" rel="nofollow"><code>&lt;optgroup&gt;</code></a> is a great one that people often miss out on when doing segmented <code>&lt;select&gt;</code> lists. </p> <pre><code>&lt;select&gt; &lt;optgroup label="North America"&gt; &lt;option value='us'&gt;Unite States&lt;/option&gt; &lt;option value='ca'&gt;Canada&lt;/option&gt; &lt;/optgroup&gt; &lt;optgroup label="Europe"&gt; &lt;option value='fr'&gt;France&lt;/option&gt; &lt;option value='ir'&gt;Ireland&lt;/option&gt; &lt;/optgroup&gt; &lt;/select&gt; </code></pre> <p>is what you should be using instead of</p> <pre><code>&lt;select&gt; &lt;option value=''&gt;----North America----&lt;/option&gt; &lt;option value='us'&gt;Unite States&lt;/option&gt; &lt;option value='ca'&gt;Canada&lt;/option&gt; &lt;option value=''&gt;----Europe----&lt;/option&gt; &lt;option value='fr'&gt;France&lt;/option&gt; &lt;option value='ir'&gt;Ireland&lt;/option&gt; &lt;/select&gt; </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/1170799#1170799 1 Answer by Anthony for Hidden Features of HTML Anthony 2009-07-23T10:08:56Z 2009-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>&lt;lh&gt;</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#1188904 1 Answer by Kiewic for Hidden Features of HTML Kiewic 2009-07-27T15:38:27Z 2009-09-22T20:33:56Z <p>The <strong><code>&amp;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>&amp;nbsp;</code> could look like this:</p> <pre><code>something&amp;nbsp ;very&amp;nbsp ;large | somthing else ------------------------------------------------ bla | bla bla bla </code></pre> http://stackoverflow.com/questions/954327/hidden-features-of-html/1462193#1462193 9 Answer by Russ Cam for Hidden Features of HTML Russ Cam 2009-09-22T19:45:32Z 2009-09-22T19:45:32Z <p>The <code>&lt;kbd&gt;</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#1463772 0 Answer by Sir Psycho for Hidden Features of HTML Sir Psycho 2009-09-23T03:09:11Z 2009-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>