<!DOCTYPE html>
<html lang="ko">
<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>transition</title>
<style>
* {margin: 0; padding: 0;}
a {color: black; text-decoration: none;}
li {list-style: none;}
/*-------- box01 --------*/
.box01 {
width: 200px; height: 200px;
border: 1px solid black;
background-color: yellow;
transition-property: background-color;
transition-duration: 0.5s;
}
.box01:hover {background-color: red;}
/*-------- box02 --------*/
.box02 {
width: 200px; height: 200px;
border: 1px solid black;
transition-property: height;
transition-duration: 0.3s;
transition-delay: 0.1s;
}
.box02:hover {
height: 400px;
}
</style>
</head>
<body>
<div class="box01">color</div>
<div class="box02">height</div>
</body>
</html>