HTML CSS examples for CSS Widget:Div
Automatic fade in fade out of divs to make it blink
<html lang="en"> <head> <style> div {<!--from w ww.j a v a 2s . co m--> animation:fdio 3s infinite; background:gray; } @keyframes fdio { 50% { opacity:0; } } </style> </head> <body translate="no"> <div> text </div> </body> </html>