samedi 6 août 2016

Contours ou ombres au texte (caractère par caractère)

TEXTE

 <div align="center">
<b><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: x-large; text-shadow: 0px 0px 5px orange;">TEXTE</span></b></div> 


Pour une simple ombre

TEXTE

 <div align="center"> <b><span style="font-family: &quot;arial&quot; , &quot;helvetica&quot; , sans-serif; font-size: x-large; text-shadow: 3px 3px #d3d3d3;">TEXTE</span></b></div>  


Le CSS classique

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
    text-shadow: 2px 2px 2px blue;
}
</style>
</head>
<body>

<h1>Text-shadow effect</h1>

<p><b>Note:</b> Internet Explorer 9 and earlier do not support the text-shadow property.</p>

</body>
</html>  


Aucun commentaire:

Enregistrer un commentaire