Vlastnosť text-stroke-color
Vlastnosť text-stroke-color nastavuje farbu obrysu
symbolov textu alebo jeho
obtiahnutie.
Syntax
selektor {
text-stroke-color: farba;
}
Príklad
Nastavme symbolom nášho textu oranžový obrys:
<p>
Text
</p>
body {
width: 200px;
height: 100px;
}
p {
-webkit-text-stroke-color: orange;
text-stroke-color: orange;
-webkit-text-stroke-width: 1px;
color: white;
padding: 10px;
font-size: 30px;
font-weight: bold;
font-family: Arial;
}
:
Pozrite tiež
-
vlastnosť
text-fill-color,
ktorá nastavuje farbu výplne symbolom textu -
vlastnosť
text-stroke,
ktorá nastavuje obrys textu -
vlastnosť
text-stroke-width,
ktorá nastavuje hrúbku obrysu textu