How to get started with layer fonts in CSS

Paddi Macdonnell.
June 20, 2014
How to get started with layer fonts in CSS.

We might be inclined to think of highly decorative and multi-colored fonts as belonging to the digital type age. Not so. Chromatic Type which enabled the use of outlines, shadows, and multiple colors (among other things) go back to the mid-19th century. They were made up of two or more corresponding sets that were printed one over the other, to create the desired effect.

Their digital descendants are designed to work in exactly the same way. Each style in a layer font family can be combined with its complementary styles to form a composite.

There is generally a regular (or fill) style which can be used independently and then several supplementary styles, such as outlines and decorations, that can be added on top. The supplementary styles are generally not usable independently, they need to be used in conjunction with at least one other style in order to be legible. Many layer font families also come with a ready-made composite style.

Layer fonts in the browser

In Photoshop, Illustrator, or any other graphics programme which utilizes layers, layering fonts is straightforward enough, but how does this work in a browser?

Layering fonts with divs

One approach would be to create several <div>s and pin them to the same point like this:

<!-- HTML-->
<div id="first">
 <h1>Using Layer Fonts In CSS</h1>
</div>
<div id="second">
 <h1>Using Layer Fonts In CSS</h1>
</div>
<div id="third">
 <h1>Using Layer Fonts In CSS</h1>
</div>

/* CSS */
#first, #second, #third{
 display: block;
 position:absolute;
 top:10px;
 left:5px;
}
h1 {
 font:5em 'One';
 color:rgba(200,0,0,.85);
}
#second h1 {
 font-family:'Two';
 color:rgba(0,200,0,.85);
 }
#third h1 {
 font-family:'Three';
 color:rgba(0,0,200,.85);
}

While this does work, it involves creating a div for each layer of the font, and then repeating the same content in each div. The resulting markup is a semantic mess, failing entirely to separate content and style information.

Layering fonts with pseudo elements

There is another, relatively simple, technique that doesn't interfere with the markup: by using the ::before and ::after pseudo elements the text can be layered without cluttering up the html.

Here's what we're going to build:

(If you'd like to follow along with the very short code, you can download the files here. Unfortunately the fonts I'm using (Homestead which is a comprised of 6 styles, 3 of which are specifically designed to be used together) aren't included in the download, but you can download them as donation-ware from here. I’ve loaded each font file using the @fontface rule.)

In the markup, we create an <h1> containing the text to be layered, and then place a <div> around it. We add a text attribute to the <h1> tag and set it to match our heading text (this will later be used by the CSS to set the content of the ::before and ::after). By setting the content of the pseudo-elements in the attribute we are keeping the content in the markup (just about), this means we don't have to set the content of the pseudo-elements in the CSS.

(If you are using JavaScript, or even something like PHP, then it's a good idea to insert the attribute and the value at the same time to avoid typos creating mismatched text.)

<div>
 <h1 text="Using Layer Fonts In CSS">Using Layer Fonts In CSS</h1>
</div>

In the CSS, we start by styling the h1. Although the ::before and ::after pseudo classes are supported by all major browsers, it is a good idea for the h1 to use a style which will be readable on its own, to cover legacy browsers.

Layer fonts tend to contain a fair bit of detail, so it's best to use them at large sizes. For this example I'm using Homestead Display at 5em.

h1 {
 font: 5em ‘Display’;
 color:rgba(100,60,20,1);
}

The ::before and ::after are set to use a different font and color:

h1::before {
 content: attr(text);
 font-family:'Two';
 color:rgba(150,150,100,.5);
}
h1::after {
 content: attr(text);
 font-family:'Three';
 color: rgba(180,150,50,.5);
}

In order to force the ::before and ::after to be on top of the h1, we need to give them a position of absolute with top and left positions of 0, and then wrap the whole thing in a relatively positioned div.

In order to make sure the ::before and ::after stick to the heading when the window is resized, both the h1 and its wrapper div must be displayed as block level elements:

div {
 position: relative;
 top:10px;
 left:5px;
 background-color: rgba(200,150,150,0.2);
 border-radius: 10px;
 max-width:1190px;
}

The nice thing about this technique is that it degrades gracefully. If your browser doesn't support pseudo elements, you'll just see the main font, which is legible by itself.

Paddi MacDonnell

Paddi MacDonnell is a designer and entrepreneur from Northern Ireland, follow her on Twitter.

Read Next

20 Best New Websites, April 2024

Welcome to our sites of the month for April. With some websites, the details make all the difference, while in others,…

Exciting New Tools for Designers, April 2024

Welcome to our April tools collection. There are no practical jokes here, just practical gadgets, services, and apps to…

14 Top UX Tools for Designers in 2024

User Experience (UX) is one of the most important fields of design, so it should come as no surprise that there are a…

What Negative Effects Does a Bad Website Design Have On My Business?

Consumer expectations for a responsive, immersive, and visually appealing website experience have never been higher. In…

10+ Best Resources & Tools for Web Designers (2024 update)

Is searching for the best web design tools to suit your needs akin to having a recurring bad dream? Does each…

3 Essential Design Trends, April 2024

Ready to jump into some amazing new design ideas for Spring? Our roundup has everything from UX to color trends…

How to Plan Your First Successful Website

Planning a new website can be exciting and — if you’re anything like me — a little daunting. Whether you’re an…

15 Best New Fonts, March 2024

Welcome to March’s edition of our roundup of the best new fonts for designers. This month’s compilation includes…

LimeWire Developer APIs Herald a New Era of AI Integration

Generative AI is a fascinating technology. Far from the design killer some people feared, it is an empowering and…

20 Best New Websites, March 2024

Welcome to our pick of sites for March. This month’s collection tends towards the simple and clean, which goes to show…

Exciting New Tools for Designers, March 2024

The fast-paced world of design never stops turning, and staying ahead of the curve is essential for creatives. As…

Web Tech Trends to Watch in 2024 and Beyond

It hardly seems possible given the radical transformations we’ve seen over the last few decades, but the web design…