Coding/HTML & CSS
[HTML & CSS] div 태그 hover 효과 주기 !!
포스트it
2023. 1. 15. 08:00
728x90
반응형
[HTML & CSS] div 태그 hover 효과 주기 !!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
.div1 {
width: 300px;
height: 100px;
border: 1px solid blue;
}
.div1:hover {
background-color:#384E80;
}
</style>
<body>
<div class="div1"></div>
</body>
</html>
결과값
728x90
반응형