Respuesta :

Change the z-index property in CSS; the higher the z-index, the more on-top it will be.

<style>
.top-image {
z-index: 3;
}

.bottom-image {
z-index: 2;
}
</style>