Create red neon glow shadow using CSS


To create red neon glow shadow, use the text-shadow property. You can try to run the following code to achieve this

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         h1 {
            text-shadow: 0 0 4px #FF0000;
         }
      </style>
   </head>
   <body>
      <h1>Heading One</h1>
      <p>Above heading has a read neon glow shadow effect.</p>
   </body>
</html>

Updated on: 24-Jun-2020

318 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements