top of page
Writer's pictureWeb Coding

How to add a Neon Effect to text when the user hovers over

Today I will be teaching you how to add Neon Effect to text when the user hovers over using only HTML and CSS


HTML

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Document</title>
 <link rel="stylesheet" href="style.css">
</head>
<body>
 <p>Hello</p>
</body>
</html>

CSS

body{
 min-height100vh;
 displayflex;
 align-itemscenter;
 justify-contentcenter;
 background-colorblack;
}

p{
 font-size104px;
 text-transformuppercase;
 colorwhite;
}

p:hover{
 text-shadow0 0 5px white0 0 10px white,
 0 0 20px #46008C0 0 25px #46008C
 0 0 30px #46008C0 0 35px #46008C,
 0 0 40px #46008C;
}

If you found this blog post helpful don’t forget to check out my other projects and if you want more content follow me on


YouTube: https://www.youtube.com/channel/UC2nxqB2usQIS2c8zwVZKWEQ

Instagram: https://www.instagram.com/coding_for_the_web/

Twitter: https://twitter.com/LearnWebCoding

4 views

Comments


bottom of page