CSS 42 transition-property 속성
프론트엔드/CSS2021. 4. 4. 19:53
transition-property
변화 효과를 적용할 속성들 나열

<!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>
<style>
div{
width: 100px;
height: 100px;
background: orange;
transition-property: width, background, color;
}
div:hover{
width: 400px;
background: blue;
color: white;
}
</style>
</head>
<body>
<div>마우스를 올리면 여러 속성이 변합니다.</div>
</body>
</html>
'프론트엔드 > CSS' 카테고리의 다른 글
| CSS 44 transition-timing-function 속성 (0) | 2021.04.04 |
|---|---|
| CSS 43 transition-duration 속성 (0) | 2021.04.04 |
| CSS 41 변화 속성 (0) | 2021.04.04 |
| CSS 40 3차원 변환 함수 (0) | 2021.04.04 |
| CSS 39 2차원 변환 함수 (0) | 2021.04.04 |
댓글()
초보개발자의 성장블로그




