We want to outlined font. But we can't give stroke(outline-contour).
Contour interior was correct. What should we do to the stroke to outside?
Example:
Is there a reason you have this tagged as C#? Or would a front-end solution like this work?
body {
background-color: red;
}
.outlined {
font-size: 75px;
font-weight: bold;
font-family: 'Arial';
color: white;
text-shadow:
-2px -2px 0 #000,
2px -2px 0 #000,
-2px 2px 0 #000,
2px 2px 0 #000;
}
<p class="outlined">Example</p>