A look at the ch CSS unit

A while ago, I wrote about the [Tailwind typography plugin].
I was pretty blown away by how easy, and readable big text elements become.

After researching their applied styles, I’ve noted the prose class actually goes off on the ch unit.

.prose {


This content originally appeared on DEV Community and was authored by Chris Bongers

A while ago, I wrote about the [Tailwind typography plugin].
I was pretty blown away by how easy, and readable big text elements become.

After researching their applied styles, I've noted the prose class actually goes off on the ch unit.

.prose {
    max-width: 65ch;
}

This is based on the width of the 0 character for a specific font!
Yes, so changing the font might affect this.

And the result is that it actually makes a super readable width.

Seeing the ch unit in action

Let's give this a try and make a demo with it.

For the HTML, we render two sections with different classes to represent the different fonts.

<section class="georgia">
  <p>copy</p>
</section>
<section class="helvetica">
  <p>copy</p>
</section>

Let's add some basic styling so we can see these two sections under each other.

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
}
section {
  display: flex;
  align-items: center;
}
p {
  max-width: 65ch;
}
.georgia {
  font-family: Georgia, serif;
}
.helvetica {
  font-family: helvetica, sans-serif;
}

As you can see, we use the same max-width value for both elements, but once we see the end result, the one is bigger.

CSS ch unit in action

The image above shows that the top element rendering the Georgia font is wider.
This is caused by its 0 (zero) being wider than the Helvetica font set.

You can also have a play with it yourself in this Codepen.

Extra reading

Shawn wrote this great article using this ch unit and just 100 bytes of CSS to make anything look great!

Here are his magic bytes:

html {
  max-width: 70ch;
  padding: 3em 1em;
  margin: auto;
  line-height: 1.75;
  font-size: 1.25em;
}

You can read the full article on Shawn's blog.

To wrap this up, the ch unit is super powerful yet a bit unpredictable as the size might change.

I really like it, as I don't do static pixel design anyway, but I'm looking forward to hearing your thoughts on the ch unit!

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter


This content originally appeared on DEV Community and was authored by Chris Bongers


Print Share Comment Cite Upload Translate Updates
APA

Chris Bongers | Sciencx (2021-11-27T12:53:52+00:00) A look at the ch CSS unit. Retrieved from https://www.scien.cx/2021/11/27/a-look-at-the-ch-css-unit/

MLA
" » A look at the ch CSS unit." Chris Bongers | Sciencx - Saturday November 27, 2021, https://www.scien.cx/2021/11/27/a-look-at-the-ch-css-unit/
HARVARD
Chris Bongers | Sciencx Saturday November 27, 2021 » A look at the ch CSS unit., viewed ,<https://www.scien.cx/2021/11/27/a-look-at-the-ch-css-unit/>
VANCOUVER
Chris Bongers | Sciencx - » A look at the ch CSS unit. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/11/27/a-look-at-the-ch-css-unit/
CHICAGO
" » A look at the ch CSS unit." Chris Bongers | Sciencx - Accessed . https://www.scien.cx/2021/11/27/a-look-at-the-ch-css-unit/
IEEE
" » A look at the ch CSS unit." Chris Bongers | Sciencx [Online]. Available: https://www.scien.cx/2021/11/27/a-look-at-the-ch-css-unit/. [Accessed: ]
rf:citation
» A look at the ch CSS unit | Chris Bongers | Sciencx | https://www.scien.cx/2021/11/27/a-look-at-the-ch-css-unit/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.