-1

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:

enter image description here

Kyle
  • 6,500
  • 2
  • 31
  • 41
Erdil
  • 3
  • 3

1 Answers1

0

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>
Tyler Roper
  • 21,445
  • 6
  • 33
  • 56