Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript React Basics (retired) Thinking in Components Properties

right alignment for .counter class off, needs float: right;

hi ore a comment than a question, my stiff in the .counter class div was not right justifying, they were all over the place in the line between the name and right margin of the My Scoreboard app.

to correct this, you need to go into the app.css and for the .counter class ā€”

  .counter {
    display: flex;
  }

... add a float: right; to that....

  .counter {
    display: flex;
    float: right;
  }

that should fix it. it did it for me.

best,

ā€” faddah portland, oregon, u.s.a.

1 Answer

I didn't have any styling issue... Rare...