styles.css 501 B

1234567891011121314151617
  1. body {
  2. background-color: skyblue;
  3. }
  4. /* h1 {
  5. background-color: blue;
  6. background-image: url(https://www.mundodeportivo.com/alfabeta/hero/2022/05/Dragon-Ball-confirma-a-que-personaje-Goku-nunca-podra-ganarle.jpg);
  7. background-size: 100px;
  8. background-repeat: no-repeat;
  9. } */
  10. /* Equivalente */
  11. h1 {
  12. background: blue url(https://www.mundodeportivo.com/alfabeta/hero/2022/05/Dragon-Ball-confirma-a-que-personaje-Goku-nunca-podra-ganarle.jpg) no-repeat;
  13. background-size: 100px;
  14. }