I would like to show an img when i hover over another but nothing is happening. Any advice on what i can do to change the code
**HTML**
<div id="container-collection">
<img class="clothes1" src="Images/smallest/JPEG/IMG_3148.jpg">
<img class="closeup1" src="Images/Smaller/bigger ones/JPEG/IMG_3148_1.jpg">
</div>
**CSS**
img.closeup1{
display: none;
}
img.closeup1:hover clothes1 {
display: block;
}