To add CSS font border, we add the text-stroke property.
For instance, we write
h1 {
-webkit-text-stroke: 2px black;
font-family: sans;
color: yellow;
}
to set the -webkit-text-stroke property to the border style we want on h1 elements.
To add CSS font border, we add the text-stroke property.
For instance, we write
h1 {
-webkit-text-stroke: 2px black;
font-family: sans;
color: yellow;
}
to set the -webkit-text-stroke property to the border style we want on h1 elements.