Answers for "css white border around text"

CSS
1

how to add a black border around text css

h1 {
  text-shadow: 1px 1px #ffffff;
}
Posted by: Guest on December-03-2019
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

Browse Popular Code Answers by Language