=============================코드=============================
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
.photo {
position: absolute; /* 절대값을 주는 것 */
left: 50px;
top: 20px;
}
.shadow {
position: absolute; /* 절대값을 주는 것 */
left: 450px;
top: 20px;
border-radius: 50px;
box-shadow: 20px 20px 10px 10px orange;
}
</style>
</head>
<body>
<img class="photo" alt="튤립 이미지" src="images/img.jpg">
<img class="shadow" alt="튤립 이미지" src="images/img.jpg">
</body>
</html>
스타일 적용 전

스타일 적용 후

=============================코드=============================
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
.photo {
position: absolute;
left: 50px;
top: 100px;
opacity: 0.25; /* 투명도 속성 */
}
.photo:hover {
opacity: 1;
}
</style>
</head>
<body>
<img class="photo" alt="튤립 이미지" src="images/img.jpg">
</body>
</html>
스타일 적용 전

스타일 적용 후
마우스 올리면 색이 들어옴
안 올리고 있으면 연한 색상

