SuperSimpleDev / html-css-course-2022

1.32k stars 993 forks source link

3a and 4a do not resemble each other #5

Closed magnir88 closed 2 years ago

magnir88 commented 2 years ago

padding solution for 4a doesn't resemble original 3a.

SuperSimpleDev commented 2 years ago

Hmm, that's weird. Can you share some screenshots or code? Is it a little different or a lot different?

magnir88 commented 2 years ago

37C8E337-C3E9-4EDF-90E5-AF49A7C32965

SuperSimpleDev commented 2 years ago

Oh hmm, in the 3a exercise, line 6:

  height: 40px

is missing a ; at the end.

It should be:

  height: 40px;

Can you try that? CSS needs a ; at the end of each style (part of the syntax rules). Otherwise, the style won't work

magnir88 commented 2 years ago

Oh I see! thank you!