Search
 
SCRIPT & CODE EXAMPLE
 

CSS

How to make blinking/flashing text with CSS 3

//Add following CSS to your stylesheet
//css starts here
.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
//css ends here

//Add "blink_me" class to any of the HTML element to apply blink effect on it
<div class="blink_me">BLINK ME</div>
Comment

PREVIOUS NEXT
Code Example
Css :: css content from data attribute 
Css :: cut word css 
Css :: Warning: Failed child context type: Invalid child context `virtualizedCell.cellKey` of type `number` supplied to `CellRenderer`, expected `string`. 
Css :: bootstrap modal is grayed out 
Css :: padding clamp 
Css :: centering with flexbox 
Css :: css position sticky 
Css :: media screen desktop 
Css :: scss hover 
Css :: rgb gold 
Css :: center item 
Css :: ::after cant see 
Css :: how center div in css 
Css :: add css file to html 
Css :: how to center table text in html 
Css :: css selector not contains attribute 
Css :: input disabled remove css 
Css :: nth child css tricks 
Css :: photshop flip layer 
Css :: wordpress css admin not loading 
Css :: window popup hide address bar 
Css :: background image blur css codepen 
Css :: create a animation name in css 
Css :: generate random grid in css 
Css :: css especifico para safari 
Css :: css border width 
Css :: most common media query sizes 
Css :: how to get element details using cssselector using beautifulsoup 
Css :: vertical align css 
Css :: text-shadow css 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =