Answers for "write text in border 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
1

css text border

p{
  border: 1px solid #f00;
  /* 
    ShortHand 
    border: border-width border-style border-color
  */
}
Posted by: Guest on June-14-2021
1

border for text in html

/*All types of border*/
p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {border-style: none;}
p.hidden {border-style: hidden;}
p.mix {border-style: dotted dashed solid double;}
Posted by: Guest on February-26-2021

Browse Popular Code Answers by Language