CSS
[ CSS ] 모션 모음
숑숑이~~
2022. 2. 13. 22:28
마우스 오버시 위로 이동
더보기
<style>
.btn-upper {
-webkit-transition: 1s ease;
transition: 1s ease;
}
.btn-upper:hover {
transform: translateY(-20px);
}
</style>
<button class="btn-upper">
Like
</button>
반응형