A lot of developers tend to do the bare minimum when it comes to implementing proper website typography. This isn’t an insult - I’m happy that typography is given any thought at all during development, I just believe more can always be done to improve upon it.
In today’s TypeTip we’re going to play around with the text-indent
property, look into when it’s best to use it and how to implement it properly.
The property and browser support
Browser support is actually pretty great for such a regularly over-looked CSS property. All major desktop and mobile browsers support it:

Now that doesn’t mean you should just slap this property on all your type elements and call it a day - there are specific use cases for text-indent
and some basic rules to follow:
Use Cases
- Increasing readability of large text blocks that would otherwise overwhelm the reader
- Replicating book or report typography layouts
Basic Rules
- Best to set this property on inner type children only - meaning items like
p
orblockquotes
instead of main headings - When used on paragraph tags it’s best to target only
p
elements that directly follow a sibling tag (see “The CSS” below)
The CSS
Adding the property is extremely trivial, all you need is the following:
/* Best practice for paragraphs */
p + p {
text-indent: 1rem; /* whatever you want */
}
Let’s see it in action
See the Pen Simple text-indent by Bradley Taunt (@bradleytaunt) on CodePen.
Leave a comment
To make a comment, please send an e-mail using the button below. Your e-mail address won't be shared and will be deleted from my records after the comment is published. If you don't want your real name to be credited alongside your comment, please specify the name you would like to use. If you would like your name to link to a specific URL, please share that as well. Thank you.