curriculum icon indicating copy to clipboard operation
curriculum copied to clipboard

Intermediate HTML & CSS: More Text Styles - Line height codepen improvement

Open ItsTosh opened this issue 1 year ago • 2 comments

Checks

Describe your suggestion

In the "More Text Styles" lesson, in the CodePen for: https://www.theodinproject.com/lessons/node-path-intermediate-html-and-css-more-text-styles#letter-spacing

The last CSS declaration is this:

.narrow {
  font-size: 48px;
  letter-spacing: -.15em;
}

The -.15em might confuse people, so it could be better to to write it like this, -0.15em, instead for better clarity.

Path

Node / JS

Lesson Url

https://www.theodinproject.com/lessons/node-path-intermediate-html-and-css-more-text-styles

(Optional) Discord Name

toshcodes.

(Optional) Additional Comments

I would work on it, but I have no idea how to edit the <iframe>

Acceptance Criteria:

  • [ ] Convert -.15em to -0.15em for the CodePen in line-height

ItsTosh avatar Aug 11 '24 09:08 ItsTosh