Help with HTML underline?

  • Thread starter Thread starter jasymine_1992
  • Start date Start date
J

jasymine_1992

Guest
i tried to put an underline with a dashed underline on the bottom of the first underline on a word but it wont show. Is there any code i could put to make it show? oh yeah,and it wont show any other regular underlines.
 
If you want two underlines, you need to use the CSS border property. Something like this:

<u style="border-bottom: 1px solid #000;">Your text</u>
 
Back
Top