Why is element <u> considered outdated according to VS2008? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T01:54:15Z http://stackoverflow.com/feeds/question/1078912 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008 3 Why is element <u> considered outdated according to VS2008? Agnel Kurian 2009-07-03T11:18:41Z 2009-07-04T06:41:31Z <p>Why do I get the following message in Visual Studio when I use the &lt;u&gt; element?</p> <blockquote> <p>"Element 'u' is considered outdated. A newer construct is recommended"</p> </blockquote> <p>Has it aged?</p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1078918#1078918 7 Answer by DR for Why is element <u> considered outdated according to VS2008? DR 2009-07-03T11:20:25Z 2009-07-03T11:41:13Z <p>It's because the W3C decided to deprecated it.</p> <p>It's because all layout and design should be done using CSS. In HTML ideally only <em>structure</em> should exist.</p> <p><code>&lt;u&gt;</code> only adds a specific font decoration to the text, but no structural information.</p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1078921#1078921 8 Answer by redsquare for Why is element <u> considered outdated according to VS2008? redsquare 2009-07-03T11:21:27Z 2009-07-03T11:21:27Z <p>Because according to w3c is has been depreciated. Read <a href="http://www.w3.org/TR/html4/present/graphics.html#h-15.2.1" rel="nofollow">here</a> Also any style/formatting should be the responsibility of css but I am sure VS follows the w3c guidelines.</p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1078922#1078922 4 Answer by Neil Aitken for Why is element <u> considered outdated according to VS2008? Neil Aitken 2009-07-03T11:21:40Z 2009-07-03T11:21:40Z <p>The tag is deprecated along with other text formatting / style elements.</p> <p>The 'in' thing to do is to use correct markup and apply styling with stylesheets.</p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1078926#1078926 11 Answer by Joeri Sebrechts for Why is element <u> considered outdated according to VS2008? Joeri Sebrechts 2009-07-03T11:22:31Z 2009-07-03T11:22:31Z <p>The underline tag has been deprecated as of HTML4.</p> <p><a href="http://www.w3.org/TR/html401/present/graphics.html#edef-U" rel="nofollow">http://www.w3.org/TR/html401/present/graphics.html#edef-U</a></p> <p>The reason is that visual styling does not belong in tags, but should be moved to stylesheets.</p> <p>You can use the text-decoration: underline style instead:</p> <p>&lt;span style="text-decoration: underline"&gt;some underlined text&lt;/span&gt;</p> <p>(Or use text-decoration:none to disable underlining.)</p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1079242#1079242 -4 Answer by Coding With Style for Why is element <u> considered outdated according to VS2008? Coding With Style 2009-07-03T12:56:30Z 2009-07-03T13:21:02Z <p>Formatting with HTML rather than CSS is considered deprecated these days. Anyhow, if you ever have issues with standards compliance rejecting your in-line formatting, follow the following easy search and replace rules:</p> <p><b>&lt;b&gt;&lt;/b&gt;</b> Replace with <b>&lt;span style=font-weight:bold&gt;&lt;/span&gt;</b><br> <b>&lt;u&gt;&lt;/u&gt;</b> Replace with <b>&lt;span style=text-decoration:underline&gt;&lt;/span&gt;</b><br> <b>&lt;i&gt;&lt;/i&gt;</b> Replace with <b>&lt;span style=text-font-style:italic&gt;&lt;/span&gt;</b><br> <b>&lt;font face=font,otherfont size=number&gt;&lt;/font&gt;</b> Replace with <b>&lt;span style=font-family:font,otherfont;font-size:replace-with-keyword&gt;&lt;/span&gt;</b><br> <b>&lt;s&gt;&lt;/s&gt;</b> aka <b>&lt;strike&gt;&lt;/strike&gt;</b> Replace with <b>&lt;span style=text-decoration:line-through&gt;&lt;/span&gt;</b><br></p> <p>Keywords for font-size: xx-small, x-small, small, medium, large, x-large, xx-large<br> Roughly the same.</p> <p>If you will just follow through with these easy replacements, you will experience...!</p> <ul> <li>All the joys of standards compliance! (Bragging rights.)</li> <li>None of the benefits. (This CSS isn't going to get modified from a single &lt;style&gt;.)</li> <li>All the pain of excessive standardization (Wait, which formatting rule does this &lt;/span&gt; tag undo again? Shit.)</li> <li>More bandwidth consumption! (The price of progress, as soon as someone clues me in on how this helped anything.)</li> <li>Decreased browser support! (Y'know those folks who still use old browsers or minimalist browsers like <b>LYNX</b>, <b>Links</b>, <b>w3m</b>, <b>OffByOne</b>, etc.? Eh... who cares?)</li> </ul> <p>Oh yeah...</p> <p><b>Addendum</b>: More seriously, because these days many standards purists just have a hard-on for pure CSS. Most of the support behind CSS obviating regular markup generates simply from it being modern so you should get with the times. Other support comes from the notion that CSS is inherently more maintainable and completely overlooks unmaintainable messes like what I suggested above.</p> <p>It's not that I have anything against CSS. The point here is that a lot of people preach the standard excessively and will condone it even when it's used in wildly inappropriate ways. The notion of replacing regular HTML tags with inline formatted CSS as I mentioned is genuinely viewed as progress by far too many advocates of CSS. They seem to view upholding the standard, the pattern, the design rule, as being some kind of inherent good rather than rationally looking at it. Inline formatting has its place, and I think using regular HTML tags for it is fitting and much more readable.</p> <p>Those adherents are like the folks who tell you gotos are evil and you should never, ever use them. The ones who will look at a regular stack-esque wind and unwind and instead use an indented if statement clusterfuck going ten layers of indentation and repeated code deep. And, they will genuinely view their version as more readable and maintainable even though by any sane standard it clearly isn't. For more on that tangent: <a href="http://kerneltrap.org/node/553/2131" rel="nofollow">http://kerneltrap.org/node/553/2131</a></p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1081464#1081464 1 Answer by Sam DeFabbia-Kane for Why is element <u> considered outdated according to VS2008? Sam DeFabbia-Kane 2009-07-04T04:07:46Z 2009-07-04T04:07:46Z <p>As others have said, &lt;u&gt; (and similar elements) have been deprecated in the latest versions of web standards because of a general belief that style and markup should be separated.</p> <p>And, as others have said, you can make your HTML valid by using a span with inline styling. Really though, that's not any better. Is it valid? Yes. But it buys you nothing else over simply using &lt;u&gt; tags in the first place.</p> <p>The best semantic solution depends on the context. Why are you trying to insert an underline in text? There are three use cases I can think of: headings, links, and text emphasis. In each case you should be applying css from a stylesheet to the relevant semantic element: &lt;h1-6&gt; for headings, &lt;a&gt; for links, and &lt;em&gt; for emphasized text. If you need variations of each, apply css classes and ids as necessary.</p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1081498#1081498 0 Answer by nilamo for Why is element <u> considered outdated according to VS2008? nilamo 2009-07-04T04:35:09Z 2009-07-04T04:35:09Z <p>&lt;u> is part of a family of elements that were deprecated. &lt;b> and &lt;i> were replaced with &lt;strong> and &lt;em>, respectively, while requires using css for effect. </p> <p>The reasoning is that HTML shouldn't decide that something is underlined or bolded, that type of information is supposed to be a part of the style, and thus is a perfect candidate for a stylesheet.</p> http://stackoverflow.com/questions/1078912/why-is-element-u-considered-outdated-according-to-vs2008/1081679#1081679 0 Answer by billyswong for Why is element <u> considered outdated according to VS2008? billyswong 2009-07-04T06:41:31Z 2009-07-04T06:41:31Z <p>Not just HTML4, <code>&lt;u&gt;</code> is considered obsolete in <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/obsolete-features.html" rel="nofollow">HTML5</a> too.</p> <p>Interestingly, <code>&lt;b&gt;</code> and <code>&lt;i&gt;</code> are kept as conforming. You may try to argue in their mailing list, or just keep using the tag as you like before. Browsers won't pull out its support and you are fine.</p> <p>I remember the reason behind the decision of pulling <code>&lt;u&gt;</code> out is about its lack of uniform semantic meaning or something like that. At least when you see bold text you know you should read it <b>louder</b>.</p>