Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS Cover link text with Image

<th>
  My Heading
  <a href="#" class="sort-asc" title="sort">Sort Asc</a>
</th>

I want to apply CSS to .sort-asc to replace the text "Sort Asc" with a custom 16x16 sort glyph image (/images/asc.png), placing the image directly to the right of the text. Is it possible?

NOTE: I can't change the markup. I can only apply styles; the following is my feeble attempt:

a.sort-asc {
    float: left;
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 5px;
    display: block;
    text-indent: -2000px;
    overflow: hidden;
    background: url("/images/asc.png") no-repeat; 
}

Currently, the image shows up all the way to the left of the table header cell. I need it to the right of the text "My Heading".

like image 725
Travis Heseman Avatar asked Dec 30 '25 03:12

Travis Heseman


1 Answers

a.sort-asc {
    width: 16px;
    height: 16px;
    padding: 0;
    display:inline-block;
    text-indent: 200px;
    overflow: hidden;
    background: url("/favicon.ico") no-repeat; 
}

Removed float - you don't need it, it's on the right position. Text indent does nothing with inline, try inline-block: http://jsbin.com/abeme

Another hack is to add color: transparent, and a small size, but that too hacky.

like image 59
Kobi Avatar answered Dec 31 '25 18:12

Kobi



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!