I don't know why, but hover
won't change the opacity of the image. I've even tried to make a separate HTML page and it has the same problem.
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<style>
#div24 img:hover {
opacity: 1.0;
}
</style>
</head>
<body>
<div id="div24">
<h3>OPACITY 0.2</h3>
<img src="https://via.placeholder.com/300x300" alt="1" style="opacity: 0.2;">
<h3>OPACITY 0.5</h3>
<img src="https://via.placeholder.com/300x300" alt="2" style="opacity: 0.5;">
<h3>OPACITY 1</h3>
<img src="https://via.placeholder.com/300x300" alt="1" style="opacity: 1.0;">
</div>
</body>
</html>