Glow Effect for Bold Text

Community Contribution: Jaee Chew

CSS

glow-bold strong,
.glow-bold b {
    font-weight: bold;
    color: #000;
 /* or keep it white if preferred */
    text-shadow: 0 0 2px #FFFFFF,
        0 0 3px #FFFFFF,
        0 0 8px #FFFFFF;
}

HTML

<div class="glow-bold">
  This is a <strong>glowing bold word</strong> in a sentence.
</div>

Last updated

Was this helpful?