Written by Harry Roberts on CSS Wizardry.
Table of Contents
- Encoding
The CSS content
property is one that has been around for a while. It’s not new, nor is it particularly ground-breaking. It is however, at least in my opinion, extremely useful and extremely underused. For those not in the know, content
sets, well, the content of an element via CSS. That is to say it gets rendered in the page but doesn’t appear in the markup. Coupled with the :before
or :after
pseudo-elements you can prepend or append content to an element respectively:
p:before{
content:"¶ ";
}
p:last-of-type:after{
content:" •";
}
The benefit of this is that things that are technically stylistic that could only really be placed in the markup in order to make an appearance can actually be ‘injected’ into the page through CSS. This keeps your code free from any stylistic markup that adds non-semantic value, and means that any markup-like elements are added through the stylesheet.
A particular example I have been using lately is simply:
- Name
- Harry
- Age
- 20
dt:after{
content:":";
}
The great thing here, and this is extremely die-hard web standards and semantics, is that an item’s title is not technically ‘Name:’ or ‘Age:’, rather it is just ‘Name’ and ‘Age’. The colon is, if you are being very anal, just stylistic.
Also, another benefit is data-purity in a database. Imagine, for whatever reason, you’re populating that
- =$userNameTitle; ?>:
- =$userName; ?>
- =$userAgeTitle; ?>:
- =$userAge; ?>
Notice the trailing colons on the
content
property.
Encoding
One point I will make is that, for certain symbols, you might need to encode them in the CSS file. If you know the symbol’s numeric value (e.g. an em dash is
) simply fire it into this converter and paste the result into your CSS:
h2:after{
content:"\0097";
}
Leave a Reply