Probably very easy- what am I doing wrong?

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/learn-html-css/lessons/css-fonts/exercises/font-size-i?action=lesson_resume

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
This exercise is asking me to change the font size of the paragraph to 20 pixels. What have I done wrong?

``` p { font-size: 20px; font-family: Roboto, sans-serif; color: AliceBlue; line-height: 1em; text-align: left; width: 100%; }
<do not remove the three backticks above>

I tried a few things and eventually “got code,” which to me looks just like what I had done (I had rearranged the order myself to see if it would do anything) :

 p {
  color: AliceBlue;
  font-family: Roboto, sans-serif;
  font-size: 20px;
  line-height: 1em;
  text-align: left;
  width: 100%;
}

This is probably because of the browser that you’re using. You might wanna switch when this sort of thing happens (doesn’t happen a lot, just a selected few exercises, mostly when using Google Chrome).

If this happens, switch to Safari / Firefox / IE / Edge / Opera depending on what you have.

1 Like

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