Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css glow text


.glow {
  font-size: 80px;
  color: #fff;
  text-align: center;
  -webkit-animation: glow 1s ease-in-out infinite alternate;
  -moz-animation: glow 1s ease-in-out infinite alternate;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
  }
  
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6, 0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
  }
}
</style>
 

use/call the class
<h1 class="glow">GLOWING TEXT</h1>
Comment

text glow effect

.text-glow {
  text-shadow: 0 0 80px rgb(192 219 255 / 75%), 0 0 32px rgb(65 120 255 / 24%);
}
Comment

PREVIOUS NEXT
Code Example
Css :: add background image and color css 
Css :: make text bigger html5 
Css :: tablet screen media query 
Css :: border dot css 
Css :: aligning form elements to center in css 
Css :: ipad specific media query 
Css :: background color inline styling 
Css :: remove marker from li tag 
Css :: hex code for khaki 
Css :: remove outline btn 
Css :: how to add box shadow to all sides css 
Css :: how to right align a block element in css 
Css :: roboto 
Css :: css table borders 
Css :: css fade in and stay 
Css :: css remove margin around page 
Css :: transition prefixes css 
Css :: css display none transition 
Css :: remove background when autofill input css 
Css :: hvad er css 
Css :: putting label on top of input css 
Css :: how to print hello world with css 
Css :: text-color gradient css 
Css :: make div the size of the text inside 
Css :: break word css 
Css :: position sticky css 
Css :: top left right bottom css shorthand 
Css :: how to evenly space icons in a div css 
Css :: background invisible css 
Css :: how to set the scroll in bootstrap4 table body 
ADD CONTENT
Topic
Content
Source link
Name
8+4 =