Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a transparent link which sits over an image (a bit like an image map) but for some reason I can not get the link to have a fixed height and width unless I give it a background color. This isn't ideal because it will cover up the image!

Unfortunately, giving the link a background color and setting the opacity to 0 clashes with a jquery animation so I can not do this either.

Any ideas how I can get around this?

html

<a class="testlink" href="link.html">&nbsp;</a>

css

.testlink {
    position:absolute; 
    top:78px; 
    left:0px; 
    text-decoration:none; 
    display:block; 
    width:275px; 
    height:200px; 
    /* background-color:#333; inserting this into the styles give the link a width/height */
}
share|improve this question
I copied this over to jsFiddle jsfiddle.net/77BDu and the link seems to have a width and a height. Run the code and inspect the element that is generated. Cheers. – Yasky Oct 27 '11 at 8:39

1 Answer

up vote 2 down vote accepted

You could use a transparent 1x1 PNG as the background, if you don't want to use external images you could embed it in the CSS with base64-encoding

share|improve this answer
1  
Depending on which browsers you need to support, you could also consider setting opacity to 0. – Flimzy Oct 27 '11 at 8:34
As I mentioned... I tried this and it clashes with some other unrelated jquery animations. – Tom Oct 27 '11 at 8:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.