How do you make a border OF text in HTML?

  • Thread starter Thread starter Renge
  • Start date Start date
R

Renge

Guest
What I want, is not a border around the text, that's easy enough to do. I want a border MADE OF text. There's nothing I can find on here that will allow me to do that.
 
Better to use <span> instead of div because it's defaultly not block dosplayed.
Use <span style="border: 1px solid #COLOR">TEXT</span>
 
<div style="width:200px;height:100px;border:1px solid blue;">
HTML borders are best created with CSS.
</div>
You can keep borders in html this way using <div> tag
 
Better to use <span> instead of div because it's defaultly not block dosplayed.
Use <span style="border: 1px solid #COLOR">TEXT</span>
 
Back
Top