Bonjour,
J'ais dans une page web que je visite et dont la fonte+attributs me plaisent,
un attribut que je comprends mal,
 -webkit-text-stroke-width: 0px

pourriez vous m'éclairer Smiley eek
d'avance merci
Modifié par Christele (22 Jun 2013 - 13:50)
salut,
d'abord ce n'est pas un attribut mais une propriété et elle n'est interprétée que par Chrome et Safari.
Elle te permet d'avoir un texte tracé. Un exemple simple

<p>Ceci est un texte</p>


p {font-size:150px;-webkit-text-stroke: 1px #000000; -webkit-text-fill-color: #FFFFFF}
a écrit :
text-stroke is an experimental CSS property in webkit, (Safari 4 and Chrome). It is only supported in these browsers. text-stroke takes a length value (the width of the stroke), and a color valur (the color of the stroke.)

webkit also proposes a new fill-color property, which specifies the color of the non stroked text. While this seems redundant given the color property of CSS, this enables you to specify a fill color that would otherwise make text illegible if text-stroke wasn't supported.

Can I use ?