IE does not render <A> tag properly - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T19:43:59Zhttp://stackoverflow.com/feeds/question/307294http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly0IE does not render <A> tag properlyRaGE2008-11-20T23:35:36Z2008-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><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML Strict//EN"><META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<HTML xmlns="http://www.w3.org/1999/xhtml">
<HEAD><STYLE>
/* 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
}
</STYLE></HEAD>
<BODY><DIV id="page"><DIV id="main"><TABLE><TBODY><TR><TD>
<A href="http://www.immo-brasseurs.com/coords.php?num=37">Test link </A>
</TD></TR></TBODY></TABLE></DIV></DIV></BODY></HTML>
</code></pre>
http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly/307297#3072972Answer by Daok for IE does not render <A> tag properlyDaok2008-11-20T23:38:25Z2008-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#3073010Answer by Cristian Libardo for IE does not render <A> tag properlyCristian Libardo2008-11-20T23:40:01Z2008-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-1Answer by Marc Charbonneau for IE does not render <A> tag properlyMarc Charbonneau2008-11-20T23:40:47Z2008-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-1Answer by Lukman for IE does not render <A> tag properlyLukman2008-11-20T23:41:29Z2008-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#3073110Answer by seanb for IE does not render <A> tag properlyseanb2008-11-20T23:41:57Z2008-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-1Answer by DrG for IE does not render <A> tag properlyDrG2008-11-20T23:47:04Z2008-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>