Subscribe

How to use the shy soft hyphen in HTML

✍️

What is the shy entity in HTML and how can it help us? Lets learn how to create a soft hypen.

16 Dec, 2020 · 1 min read

The other day I created a cool example using the <wbr> HTML tag. And although its a very cool tag on its own, there might be a better solution:

We can use &shy. It is a soft hyphen in HTML.

It means it will add a - if the word is too long. Else it will just render the word as is.

I’ll be using my <wbr> demo to add the soft hyphen as an option.

shy HTML

How the ­ works

You can place the ­ in a word or in places where you want it to enter a soft hyphen when the word is too long for its container:

super&shy;long&shy;word&shy;that&shy;needs&shy;to&shy;break&shy;better

As you can see, the implementation is the same as we saw with <wbr>; however, this is not an HTML element but an entity.

Demo

In the following Codepen, I demonstrate three methods:

  • shy: using the &shy; in the word
  • wbr: using the <wbr> in the word
  • css: using word-break in css.

See the Pen Using the shy soft hyphen by Chris Bongers (@rebelchris) on CodePen.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Submit button outside the form

4 Dec, 2022 · 1 min read

Submit button outside the form

Trying out native dialog modals

8 Aug, 2022 · 3 min read

Trying out native dialog modals

Join 2099 devs and subscribe to my newsletter