pushya
pushya

Reputation: 4418

CSS Underline variation in IE8

I am working on a page which has searched result set. I am using a anchor tag for displaying the URL and the URL is UNDERLINED.The underline is very close to the text in IE8. Working fine in FIREFOX and IE7 but have a problem with IE8. Here is the CSS class i am using

.search_results_item a {
    color: #20A3E7;
    font: 13px/17px AntennaRegular,Arial,Helvetica,Sans-serif;
    text-decoration: underline;
}

Upvotes: 0

Views: 689

Answers (2)

anglimasS
anglimasS

Reputation: 1344

Just see below the link

http://jsfiddle.net/anglimass/3ArFX/

Upvotes: 1

simoncereska
simoncereska

Reputation: 3043

you can always use border-bottom :)

Upvotes: 1

Related Questions