I have a div that has these characteristics:
div#circulo{
height:200px
width:200px
background-image: url(minhaimagem.png);
background-size:200px;
}
The image in question is a centralized circle with a transparent background. So in my html I put the div to be a link, this way:
<a href="proximapagina.html"><div id=circulo>...conteudo...</div></a>
Only the clickable area was, as expected, in the entire square of the image. Can you make the clickable area just the inner circle ??