<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
div{
width: 100px;
height: 100px;
background-color: red;
transition-property: background-color, border-radius;
transition-duration: 3s;
transition-timing-function: ease;
/*border: solid red;*/
/*padding: ;*/
}
div:hover {
background-color: blue;
border-radius: 50%;
}
</style>
</head>
<body>
<div></div>
</body>
</html>
반응형
'내가 보려고 정리한 HTML & CSS' 카테고리의 다른 글
[CSS] white-space:pre-line; (1) | 2020.09.01 |
---|---|
[CSS] display: flex (0) | 2020.08.23 |
[CSS] Position (3) | 2020.06.15 |
[HTML] nav 태그 (1) | 2020.06.12 |