Well done!

You have completed Quiz: Background Images!

Quiz Question 1 of 5

Are the following two CSS rules equivalent?

#banner {
  background-image: url(../img/rainbow.jpg);
  background-position: top center;
  background-size: 200px 200px;
  background-repeat: no-repeat;
  background-color: cyan;
}
#banner {
  background: url(../img/rainbow.jpg) top center / 200px 200px 
  no-repeat cyan;
}

Choose the correct answer below:

Skip Quiz Review Video