<!DOCTYPE HTML> <html> <head> <meta charset = "utf-8"> <title>Melting Images</title> <style type = "text/css"> #cover { position: relative; margin: 0 auto; } #cover img { position: absolute; left: 0; width: 500px; height: 515px; transition: opacity 3s ease-in-out; } #cover img.top:hover { opacity: 0; } </style> </head> <body> <div id = "cover"> <img class = "bottom" src = "Mustache.jpg"> <img class = "top" src = "Reiley.jpg"> </div> </body> </html>