I've set images in links, and it works, except that the clickable zone expands to the whole container (parent of the image.) (the orange part in the image below)
Screenshot of the clickable zone
Here's the part of the code concerning this problem (I'm not putting all in it, all the images have the same problem.) :
HTML:
<a href="img/tableau/tableau-01.jpg">
<img src="img/tableau/tableau-01.jpg" alt="tableau 01"/>
</a>
<a href="img/tableau/tableau-02.jpg">
<img src="img/tableau/tableau-02.jpg" alt="tableau 02"/>
</a>
<a href="img/tableau/tableau-02.jpg">
<img src="img/tableau/tableau-03.jpg" alt="tableau 03"/>
</a>
CSS:
#container {
position: relative;
margin: 0 auto;
width: 960px;
height: 900px;
}
img {
height: 50%;
width: 50%;
max-width: 100%;
border: 1px rgba(255, 255, 255, 0.1) solid;
margin: 0 auto;
display: block;
-webkit-transition: all ease-in 0.13s;
-moz-transition: all ease-in 0.13s;
-o-transition: all ease-in 0.13s;
-ms-transition: all ease-in 0.13s;
transition: all ease-in 0.13s;
margin-bottom: 25px;
}
And there's the link of the site