I have this DIV in the top left corner of my page. How can I make an anchor that fills this div?
Posted
by alex
on Stack Overflow
See other posts from Stack Overflow
or by alex
Published on 2010-03-18T22:07:18Z
Indexed on
2010/03/18
22:11 UTC
Read the original article
Hit count: 267
#mydiv {
position:absolute;
left:0px;
top:0px;
width:83px;
height:83px;
}
<div id="mydiv"></div>
That's my style for my DIV, which sits on the top left corner of my page. I want this div to be click-able and go to a link.
© Stack Overflow or respective owner