Learn Basic CSS by Building a Cafe Menu - Step 60

Buen dia, estoy con problemas para resolver este paso 60

Your code so far

/* file: styles.css */
body {
  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
  font-family: sans-serif;
}

.menu p {
  font-style: italic;
}

h1, h2, p {
  text-align: center;
}

.menu {
  width: 80%;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  max-width: 500px;
}

h1, h2 {
  font-family: Impact, serif;
}

.item p {
  display: inline-block;
}

.flavor, .dessert {
  text-align: left;
  width: 75%;
}

.price {
  text-align: right;
  width: 25%
}

Your browser information:

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

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 60

Link to the challenge:

Use established class selector instead of this.

¿Puedes describir el problema un poco más? desde el enlace que se supone que debe crear selectores de clase “.establecido

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.