[Tutoriel]Faire clignoter un texte en (X)html / CSS |
|---|
[Tutoriel]Faire clignoter un texte en (X)html / CSSNote : 4/5 (1 vote) Derniéres modifications : 13/12/2008 à 00:53:43 Mots-Clés : faire clignoter un mot en css texte clignotant clignoter xhtml html css blink effet texte decoration Bon il existe une propriété CSS toute bête, text-decoration il faut lui donner comme valeur blink. Exemple: Code: (X)html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Faire clignoter un texte en (X)html / CSS</title> </head> <body> <span style="text-decoration:blink;">Vive le Support du web!</span> </body> </html> Tester C'est tout! Scripts et tutoriaux similaires à celui ci:
|