Links to a spinning div with css doesn't seem to work

I show some images inside rotated divs and hyperlink them. However, the links do not seem to work .... can someone explain why this is so?

link: http://inetgate.ca/dev/portfolio use admin / test to pass the password request.

Thank! Ron

code example:

<div id="pic-7" class="pic" style="height:130px; width:110px; top:9px;left:370px; -moz-transform:rotate(-16deg); -webkit-transform:rotate(-16deg); position: absolute; background-color:#fff;background-position:center top;font-size:80%">
            <div align="center">
            <img style="margin-top:4px; border: 1px solid #999;" src="gallery/img/thumbs/wittmerperformance.png"/><a class="fancybox" rel="fncbx" href="http://www.wittmerperformance.com/" target="_blank" onclick>Wittmerperformance
            </a></div>
    </div>
+5
source share
1 answer

position:absolute; div, children <a>. . <a> , , CSS. div position:absolute; relative, . <a> absolute. !

+2

All Articles