본문 바로가기
Front/CSS

[CSS3] 마우스를 올렸을 때 변화 넣기(마우스 오버/hover)

by 시월해 2021. 4. 22.

형식) tag(혹은 id 혹은 class):hover { 디자인 내용 };

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
	
	.photo {
		opacity: 0.5; /*투명도 속성*/
	}
	
	/*이미지 태그에 마우스가 올라갔을 때 디자인 적용 */	
	.photo:hover {
		opacity: 1;
	}

	
</style>
</head>
<body>
	<img class="photo" src="images/img.jpg" alt="튤립 이미지">
</body>
</html>

 

마우스가 내려가 있을 때
마우스를 올렸을 때