I need to draw a outline to a text with outwards stroke.
<div style="color:#CDCDCD;
-webkit-text-stroke-color:black;
-webkit-text-stroke-width:0.04em;
font-family:sans-serif;
word-wrap:normal;
font-size:57px;
background-color:transparent;
text-align:left;
line-height:112%">
<p>
PI:<span style=";font-style:italic">I TRAINED WITH HIM</span>
<br/>
<span style=";font-style:italic">three times a week</span>
<br/>
<span>at the ashram.</span>
</p>
</div>
-webkit-text-stroke
makes an black outline on the text but outline is drawn inwards, which inturn reduces the white portion of font and makes it look thin. So is there any way to draw the outline outwards of the text.
Thanks.