Mar 6, 2001 #1 khue Programmer Mar 6, 2001 112 US Does anyone know how to underline a text or a phrase of text in HTML?
Mar 6, 2001 #2 greyone Programmer Dec 14, 2000 200 CA use the following tag <u></u> Upvote 0 Downvote
Mar 6, 2001 #3 luciddream Programmer Nov 8, 2000 712 US or you could use the style definitions... <style> p {text-decoration:underline;} </style> the above will make all your p tags be underlined. or you can make a special class for underlined text... <style> .under {text-decoration:underline;} </style> <span class="under">this is underlined.</span> this is not. luciddream@subdimension.com Upvote 0 Downvote
or you could use the style definitions... <style> p {text-decoration:underline;} </style> the above will make all your p tags be underlined. or you can make a special class for underlined text... <style> .under {text-decoration:underline;} </style> <span class="under">this is underlined.</span> this is not. luciddream@subdimension.com