Responsive Web Design: Learn Basic CSS Step 23

Hi everyone,

I am doing the course Responsive Web Design, and I am stuck at the “Learn Basic CSS by building a Cafe menu” Step 23.

I guess this is an easy step and I must be doing some kind of typpo, but I have been really stuck here for the past couple of days.

my code:

body {

background-color: burlywood; /* anything */

}

h1, h2, p {

text-align: center;

}

div {

width: 300px;

}

It seems to do not work. Any help, please?

1 Like

Hi everyone again,

I have been searching for information on Google, and I finally worked out the solution to this. It was a little bit tricky and I feel that the statement was a little bit underexplained.

Anyway, in case that anyone gets stucked too, the answer is the following:

body {

  /* background-color: burlywood; */

}

h1, h2, p {

  text-align: center;

}



div {

  width: 300px;

}
3 Likes

Gracias lo estaba buscando.

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