Categories: Web Development

The Easiest Way to Create Vertical Text with CSS

[ad_1]

Earlier this morning, I needed to create vertical text for a project I’m working on. After trying out a couple ideas, I took to Twitter to find what sorts of thoughts our followers had on the subject. There were plenty of great responses and ideas that we’ll go over today!


Method 1: <br> Tags

So, one possible (though not recommended) way to achieve vertical text is to add <br> tags after each letter.

View a Demo

Don’t use this method. It’s lame and sloppy.


Method 2: Static Wrapping

With this method, we wrap each letter in a span, and then set its display to block within our CSS.

View Demo

The problem with this solution — other than the frightening mark-up — is that it’s a manual process. If the text is generated dynamically from a CMS, you’re out of luck. Don’t use this method.


Method 3: Use JavaScript

My initial instinct was to dynamically add the span tags with JavaScript. That way, we get around the issues mentioned in method two.

View Demo

This method is definitely an improvement. Above, we split the text into an array, and then wrap each letter in a span. While we could use something like a for statement, or $.map to filter through the array, a far better and quicker solution is to manually join and wrap the text at the same time.

Though better, this solution isn’t recommended.

  • Will this break your layout if JavaScript is disabled?
  • Ideally, we should be using CSS for this task, if possible.

Method 4: Apply a Width to the Container

Let’s get away from JavaScript if we can. What if we applied a width to the container element, and forced the text to wrap? That could work.

View Demo

In this scenario, we apply a very narrow width to the h1 tag, and then make its font-size equal to that exact value. Finally, by setting word-wrap equal to break-word, we can force each letter onto its own line. However, word-wrap: break-word is part of the CSS3 specification, and is not compliant across all browsers.

Excluding older browsers, this seemingly solves our problem…but not entirely. The demo above does appear to work, but it’s too risky to play with pixel values. Let’s try something as simple as turning the uppercase letters into lowercase.

Yikes; with this method, we have to be very careful when it comes to the specific values we set. Not recommended.


Method 5: Apply letter-spacing

As a precaution, and to extend method four, why don’t we apply fairly large letter-spacing to get around this issue?

View Demo

That seems to fix the issue, though, again, we’re using a bit of CSS3 here.


Method 6: Use ems

Alternatively, there’s a one-liner solution. Remember when we learned that applying overflow: hidden to a parent element would miraculously make it contain its floats? This method is sort of like that! The key is to use ems, and place a space between each letter.

View Demo

Pretty neat, right? And, this way, you can apply any font size that you wish. Because we’re using ems — which is equal to the x-height of the chosen font — we’re then provided with a lot more flexibility.

But, once again, sometimes more than one letter will end up on a line. You have to be safe; that’s why I’ve applied arbitrarily large letter-spacing to ensure that there’s never more than one letter on a line.

To my knowledge at this time, this is the best, most cross-browser compliant solution.


Method 7 : Whitespace

One last way to achieve this effect is to take advantage of the white-space property.

View Demo

By setting white-space to pre, that instructs the text to behave as if it was within a pre tag. As such, it honors any spacing that you’ve added.


Conclusion

Shouldn’t there be a CSS3 rule to accomplish this task? What if I could set something along the lines of: font-display: letter-block; which would instruct each letter to be rendered as a block of sorts?

What do you think? Do you have any other alternatives that we should consider? Many people suggested using text-rotation to accomplish the task, but it’s important to remember that this also rotates the text ninety degrees as well, which is not what we’re trying to achieve.

Alicia Nelson

Recent Posts

What are the Symptoms of Dog Leg Paralysis

Watching a beloved pet struggle with leg paralysis can be distressing for any dog owner.… Read More

2 hours ago

Top 6 Reasons To Consider Dog Day Care Services

Are you considering enrolling your furry friend in daycare services for dogs? From structured play… Read More

3 hours ago

Unknown facts about Pineapple and Strawberry Sea Moss

Pineapple and strawberry sea moss may seem like exotic culinary concoctions, but they hold a… Read More

5 hours ago

How To Choose Medical School Admission Consulting

The road to medical school is full of many stepping stones. As you go through… Read More

24 hours ago

Styling Different Footwear With Black Dresses

Hey there, shoe lovers! Are you ready to step up your fashion game? Today, we're… Read More

1 day ago

How Sex Chat AI Spice up Conversation in Anyone’s Life

Hey there, conversation connoisseurs! Ready to dive into a topic that will add a little… Read More

1 day ago