-webkit-text-stroke:1.5px red;
.text_stroke_individual {
-webkit-text-stroke-width:2px;
-webkit-text-stroke-color:green;
-webkit-text-fill-color:blue;
-webkit-text-stroke:0.5px tomato;
<h4>shorthand -webkit-text-stroke:1.5px red</h4>
<div class="text_stroke"><h2>There is a shorthand text stroke property set on text</h2></div>
<h6>individual stroke property -webkit-text-stroke-width:2px -webkit-text-stroke-color:green</h6>
<p class="text_stroke_individual">There is a individual text stroke width and color property set on text</p>
<h6>with -webkit-text-fill-color:blue . This will fill the text color with blue</h6>
<p class="text_fill_color">The outline text with text fill of blue color</p>