반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
body {
	box-sizing: border-box;
	font-family: Consolas, monospace;
}

.a-1 img {
	max-width: 100%;
}

.a-1 {
	width: 400px;
	margin: 0px auto;
	position: relative;
}

.a1-b {
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
}

.a-1:hover .a1-b {
	display: block;
}
</style>

</head>
<body>

	<div class="a-1">
		<img src="image/pinkbin.png" alt="" class="a1-a">
		<img src="image/pingblue.png" alt="" class="a1-b">
	</div>

</body>
</html>
반응형