Can someone tell me what went wrong?

Tell us what’s happening:

Your code so far


<style>
div {
  width: 70%;
  height: 100px;
  margin:  50px auto;
  background: linear-gradient(
    53deg,
    #ccfffc,
    #ffcccf
  );
  }
  
  div: hover {
    transform: scale(1.1);
  }



</style>

<div></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36.

Challenge: Use the CSS Transform scale Property to Scale an Element on Hover

Link to the challenge:

Hi!

Simply remove the space between ‘div:’ and ‘hover’! => div:hover {…}