I am updating an old web page that uses inline styling. I have a column of links on the left side of the page, constrained by a div container to 25% of the page. Using css styling for the a href links, the clickable portion of the text in the links runs together to the limit of the div container. I can fix this so that each link falls on each own line by using the good ol' (br> command but I have read that this is not preferred code. What I have found to work is to place each link within its own div container.
This method displays properly on the latest Firefox browser, but testing it on Win XP running IE8 the test shrinks from 1em (16px) to .68em (13px). Is there something I can do in my css code to fix this problem on IE8? Here is the code I am using.
a:active {
color: color: #00FF00;
text-align: left;
font-family: Verdana, Geneva, sans-serif;
font-size: 1em;
}
<div>
<a class="a.active"><a href="file-1.html">file 1</a>
</div>
<div>
<a class="a.active"><a href="file-2.html">file 2</a>
</div>
and so on...