text-border css code example
Example 1: css text outline
#example {
font-size: 1em;
-webkit-text-stroke: 1px #000000;
}
#example {
font-size: 1em;
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
Example 2: how to make border for letters in css
h1 {
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
font-family: sans; color: yellow;
}
Example 3: text border css
h1 {
-webkit-text-stroke: 1px black;
}
Example 4: css text color border
h1 {
text-shadow: 1px 1px #ffffff;
}
Example 5: css text border
h1 {
color: white;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
Example 6: how to make border for letters in css
h1 {
-webkit-text-stroke: 2px black;
font-family: sans; color: yellow;
}