Files

28 lines
406 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Use the CSS Transform scale Property to Scale an Element on Hover
---
## Use the CSS Transform scale Property to Scale an Element on Hover
### Solution
2018-10-12 15:37:13 -04:00
```html
<style>
div {
width: 70%;
height: 100px;
margin: 50px auto;
background: linear-gradient(
53deg,
#ccfffc,
#ffcccf
);
}
2018-10-12 15:37:13 -04:00
div:hover {
transform: scale(1.1);
}
</style>
<div></div>
```