I've been attempting to design a book cover that will become fully visible when hovered over, but for some reason it's not working
#book_cover {
display: block;
margin-left: auto;
margin-right: auto;
width: 25%;
height: 71%;
opacity: .5;
}
#book_cover a:hover {
opacity: 1 !important;
}
<div id="book_cover">
<a href="My Link">
<img src="https://img.wattpad.com/cover/240632149-176-k827063.jpg" alt="...." width="100%" height="100%">
</a>
</div>