I added the code to the p? but keeps giving erroe

Tell us what’s happening:

Your code so far

h4 {
text-align: center;
}

}
p {
text-align: justify;

I believe this is the answer for this challenge. is there any error?
link: https://www.freecodecamp.org/learn/responsive-web-design/applied-visual-design/create-visual-balance-using-the-text-align-property

Reset the challenge with the ‘Reset All Code’ button. Then do not change anything that is already there. Only add the two text-align properties where needed.

The tests can be very sensitive to any unnecessary changes.

1 Like

Hello! The challenge is asking you to change the alignment of both the

  • heading element { h4 }
    and the
  • paragraph element { p }

At the top of your codespace, once you add the alignment elements, your code blocks should look like this:

<style>
  h4 {
    text-align: center;
 }

  p {
    text-align: justify;
  }

Happy coding!