Lastnost text-stroke-color
Lastnost text-stroke-color določa barvo konture
simbolov besedila ali njegove
obrobe.
Sintaksa
selektor {
text-stroke-color: barva;
}
Primer
Dajmo simbolom našega besedila določiti oranžno obrobo:
<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;
}
:
Glejte tudi
-
lastnost
text-fill-color,
ki določa barvo polnila simbolom besedila -
lastnost
text-stroke,
ki določa obrobo besedila -
lastnost
text-stroke-width,
ki določa debelino obrobe besedila