Answers for "how to make a border for text in html"

CSS
1

css text border

h1 {
  color: white;
  text-shadow:
   -1px -1px 0 #000,  
    1px -1px 0 #000,
    -1px 1px 0 #000,
     1px 1px 0 #000;
}
Posted by: Guest on April-02-2021

Code answers related to "how to make a border for text in html"

Browse Popular Code Answers by Language