IE does not render <A> tag properly - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:43:59Z http://stackoverflow.com/feeds/question/307294 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly 0 IE does not render <A> tag properly RaGE 2008-11-20T23:35:36Z 2008-11-21T01:11:40Z <p>SOLVED: Nevermind, the links were visited, and the border definition was missing for visited links (as someone pointed out, thanks). As for the color being first place in the border definition, the snippet comes from the IE Developper Toolbar, this is not directly my code. Anyway, thank you guys !</p> <p>Why does the link in the following snippet does not render underlined with a dashed line, just as expected and as ff would do ?</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML Strict//EN"&gt;&lt;META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt; &lt;HTML xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;HEAD&gt;&lt;STYLE&gt; /* Rule 1 of css/style.css */ * { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; FONT-FAMILY: "trebuchet ms", Arial, Helvetica, sans-serif } /* Rule 26 of css/style.css */ #main { PADDING-RIGHT: 15px; PADDING-LEFT: 15px; PADDING-BOTTOM: 15px; PADDING-TOP: 15px } /* Rule 12 of css/style.css */ #page { BORDER-RIGHT: #555 1px solid; PADDING-RIGHT: 0px; BORDER-TOP: #555 1px solid; PADDING-LEFT: 0px; BACKGROUND: #fff; PADDING-BOTTOM: 0px; MARGIN: 50px auto; BORDER-LEFT: #555 1px solid; WIDTH: 752px; PADDING-TOP: 0px; BORDER-BOTTOM: #555 1px solid } /* Rule 2 of css/style.css */ BODY { BACKGROUND: url(bg.gif) #ebeeff repeat-y center 50% } /* Rule 35 of css/style.css */ #main A:link { COLOR: #437fda; BORDER-BOTTOM: #437fda 1px dashed; TEXT-DECORATION: none } &lt;/STYLE&gt;&lt;/HEAD&gt; &lt;BODY&gt;&lt;DIV id="page"&gt;&lt;DIV id="main"&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt; &lt;A href="http://www.immo-brasseurs.com/coords.php?num=37"&gt;Test link &lt;/A&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt; </code></pre> http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly/307297#307297 2 Answer by Daok for IE does not render <A> tag properly Daok 2008-11-20T23:38:25Z 2008-11-20T23:44:50Z <p>You might want to set up the style for Visited link too.</p> <p>And, I do not think you should use <code>*{...}</code></p> <p>It works fine in FF3.</p> <p>Change to that :</p> <pre><code>#main A:link, A:Visited { COLOR: #437fda; BORDER-BOTTOM: #437fda 1px dashed; TEXT-DECORATION: none } </code></pre> <p>And change :</p> <pre><code>* { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; FONT-FAMILY: "trebuchet ms", Arial, Helvetica, sans-serif } </code></pre> <p>for </p> <pre><code>body { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; FONT-FAMILY: "trebuchet ms", Arial, Helvetica, sans-serif } </code></pre> http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly/307301#307301 0 Answer by Cristian Libardo for IE does not render <A> tag properly Cristian Libardo 2008-11-20T23:40:01Z 2008-11-20T23:40:01Z <p>I suspect this is because the link is an inline element. Can you use display:block?</p> <pre><code>#main A:link { ... display:block } </code></pre> http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly/307307#307307 -1 Answer by Marc Charbonneau for IE does not render <A> tag properly Marc Charbonneau 2008-11-20T23:40:47Z 2008-11-20T23:40:47Z <p>Try using just <code>#main a</code>, and add separate a:visited and a:hover selectors if you want to style those differently. </p> http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly/307308#307308 -1 Answer by Lukman for IE does not render <A> tag properly Lukman 2008-11-20T23:41:29Z 2008-11-20T23:41:29Z <p>umm .. shouldn't it be:</p> <p>BORDER-BOTTOM: 1px dashed #437fda;</p> <p>as far as i know css border definition is always width-style-color, in that order.</p> http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly/307311#307311 0 Answer by seanb for IE does not render <A> tag properly seanb 2008-11-20T23:41:57Z 2008-11-20T23:41:57Z <p>You should validate it first.<br /> You have a mixture of html and xhtml, meta tags outside of the html tag, style tag without the required type attribute, to name a few, which is just gonna give you a world of pain.</p> http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly/307321#307321 -1 Answer by DrG for IE does not render <A> tag properly DrG 2008-11-20T23:47:04Z 2008-11-20T23:47:04Z <p>it is </p> <pre><code>#main a { color:#437fda; border-bottom: 1px solid #437fda; text-decoration:none; } #main a:visited { color:#437fda; border-bottom: 1px solid #437fda; text-decoration:none; } </code></pre>