scrimba
Applied Visual Design
Use the CSS Transform scale Property to Scale an HTML Element on Hover
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Use the CSS Transform scale Property to Scale an HTML Element on Hover
AboutCommentsNotes
Use the CSS Transform scale Property to Scale an HTML Element on Hover
Expand for more info
index.html
run
preview
console
<style>
div {
width: 70%;
height: 100px;
margin: 50px auto;
background: linear-gradient(
53deg,
#ccfffc,
#ffcccf
);
}



</style>

<div></div>
Console
index.html
-0:52