This article is from TailwindLabs. I put this article to demonstrate how you can write blog posts/articles using AstroPaper theme.
By default, Tailwind removes all of the default browser styling from paragraphs, headings, lists and more. This ends up being really useful for building application UIs because you spend less time undoing user-agent styles, but when you really are just trying to style some content that came from a rich-text editor in a CMS or a markdown file, it can be surprising and unintuitive.
We get lots of complaints about it actually, with people regularly asking us things like:
Why is Tailwind removing the default styles on my
h1
elements? How do I disable this? What do you mean I lose all the other base styles too? We hear you, but weāre not convinced that simply disabling our base styles is what you really want. You donāt want to have to remove annoying margins every time you use ap
element in a piece of your dashboard UI. And I doubt you really want your blog posts to use the user-agent styles either ā you want them to look awesome, not awful.
The @tailwindcss/typography
plugin is our attempt to give you what you actually want, without any of the downsides of doing something stupid like disabling our base styles.
It adds a new prose
class that you can slap on any block of vanilla HTML content and turn it into a beautiful, well-formatted document:
<article class="prose">
<h1>Garlic bread with cheese: What the science tells us</h1>
<p>
For years parents have espoused the health benefits of eating garlic bread
with cheese to their children, with the food earning such an iconic status
in our culture that kids will often dress up as warm, cheesy loaf for
Halloween.
</p>
<p>
But a recent study shows that the celebrated appetizer may be linked to a
series of rabies cases springing up around the country.
</p>
<!-- ... -->
</article>
For more information about how to use the plugin and the features it includes, read the documentation.
What to expect from here on out
What follows from here is just a bunch of absolute nonsense Iāve written to dogfood the plugin itself. It includes every sensible typographic element I could think of, like bold text, unordered lists, ordered lists, code blocks, block quotes, and even italics.
Itās important to cover all of these use cases for a few reasons:
- We want everything to look good out of the box.
- Really just the first reason, thatās the whole point of the plugin.
- Hereās a third pretend reason though a list with three items looks more realistic than a list with two items.
Now weāre going to try out another header style.
Typography should be easy
So thatās a header for you ā with any luck if weāve done our job correctly that will look pretty reasonable.
Something a wise person once told me about typography is:
Typography is pretty important if you donāt want your stuff to look like trash. Make it good then it wonāt be bad. Itās probably important that images look okay here by default as well:
Now Iām going to show you an example of an unordered list to make sure that looks good, too:
- So here is the first item in this list.
- In this example weāre keeping the items short.
- Later, weāll use longer, more complex list items.
And thatās the end of this section.
What if we stack headings?
We should make sure that looks good, too.
Sometimes you have headings directly underneath each other. In those cases you often have to undo the top margin on the second heading because it usually looks better for the headings to be closer together than a paragraph followed by a heading should be.
When a heading comes after a paragraph ā¦
When a heading comes after a paragraph, we need a bit more space, like I already mentioned above. Now letās see what a more complex list would look like.
-
I often do this thing where list items have headings.
For some reason I think this looks cool which is unfortunate because itās pretty annoying to get the styles right.
I often have two or three paragraphs in these list items, too, so the hard part is getting the spacing between the paragraphs, list item heading, and separate list items to all make sense. Pretty tough honestly, you could make a strong argument that you just shouldnāt write this way.
-
Since this is a list, I need at least two items.
I explained what Iām doing already in the previous list item, but a list wouldnāt be a list if it only had one item, and we really want this to look realistic. Thatās why Iāve added this second list item so I actually have something to look at when writing the styles.
-
Itās not a bad idea to add a third item either.
I think it probably wouldāve been fine to just use two items but three is definitely not worse, and since I seem to be having no trouble making up arbitrary things to type, I might as well include it.
After this sort of list I usually have a closing statement or paragraph, because it kinda looks weird jumping right to a heading.
Code should look okay by default.
I think most people are going to use highlight.js or Prism or something if they want to style their code blocks but it wouldnāt hurt to make them look okay out of the box, even with no syntax highlighting.
Hereās what a default tailwind.config.js
file looks like at the time of writing:
module.exports = {
purge: [],
theme: {
extend: {},
},
variants: {},
plugins: [],
};
Hopefully that looks good enough to you.
What about nested lists?
Nested lists basically always look bad which is why editors like Medium donāt even let you do it, but I guess since some of you goofballs are going to do it we have to carry the burden of at least making it work.
- Nested lists are rarely a good idea.
- You might feel like you are being really āorganizedā or something but you are just creating a gross shape on the screen that is hard to read.
- Nested navigation in UIs is a bad idea too, keep things as flat as possible.
- Nesting tons of folders in your source code is also not helpful.
- Since we need to have more items, hereās another one.
- Iām not sure if weāll bother styling more than two levels deep.
- Two is already too much, three is guaranteed to be a bad idea.
- If you nest four levels deep you belong in prison.
- Two items isnāt really a list, three is good though.
- Again please donāt nest lists if you want people to actually read your content.
- Nobody wants to look at this.
- Iām upset that we even have to bother styling this.
The most annoying thing about lists in Markdown is that <li>
elements arenāt given a child <p>
tag unless there are multiple paragraphs in the list item. That means I have to worry about styling that annoying situation too.
-
For example, hereās another nested list.
But this time with a second paragraph.
- These list items wonāt have
<p>
tags - Because they are only one line each
- These list items wonāt have
-
But in this second top-level list item, they will.
This is especially annoying because of the spacing on this paragraph.
-
As you can see here, because Iāve added a second line, this list item now has a
<p>
tag.This is the second line Iām talking about by the way.
-
Finally hereās another list item so itās more like a list.
-
-
A closing list item, but with no nested list, because why not?
And finally a sentence to close off this section.
There are other elements we need to style
I almost forgot to mention links, like this link to the Tailwind CSS website. We almost made them blue but thatās so yesterday, so we went with dark gray, feels edgier.
We even included table styles, check it out:
Wrestler | Origin | Finisher |
---|---|---|
Bret āThe Hitmanā Hart | Calgary, AB | Sharpshooter |
Stone Cold Steve Austin | Austin, TX | Stone Cold Stunner |
Randy Savage | Sarasota, FL | Elbow Drop |
Vader | Boulder, CO | Vader Bomb |
Razor Ramon | Chuluota, FL | Razorās Edge |
We also need to make sure inline code looks good, like if I wanted to talk about <span>
elements or tell you the good news about @tailwindcss/typography
.
Sometimes I even use code
in headings
Even though itās probably a bad idea, and historically Iāve had a hard time making it look good. This āwrap the code blocks in backticksā trick works pretty well though really.
Another thing Iāve done in the past is put a code
tag inside of a link, like if I wanted to tell you about the tailwindcss/docs
repository. I donāt love that there is an underline below the backticks but it is absolutely not worth the madness it would require to avoid it.
We havenāt used an h4
yet
But now we have. Please donāt use h5
or h6
in your content, Medium only supports two heading levels for a reason, you animals. I honestly considered using a before
pseudo-element to scream at you if you use an h5
or h6
.
We donāt style them at all out of the box because h4
elements are already so small that they are the same size as the body copy. What are we supposed to do with an h5
, make it smaller than the body copy? No thanks.
We still need to think about stacked headings though.
Letās make sure we donāt screw that up with h4
elements, either.
Phew, with any luck we have styled the headings above this text and they look pretty good.
Letās add a closing paragraph here so things end with a decently sized block of text. I canāt explain why I want things to end that way but I have to assume itās because I think things will look weird or unbalanced if there is a heading too close to the end of the document.
What Iāve written here is probably long enough, but adding this final sentence canāt hurt.