Mar 6, 2001 #1 khue Programmer Joined Mar 6, 2001 Messages 112 Location US Does anyone know how to underline a text or a phrase of text in HTML?
Mar 6, 2001 #2 greyone Programmer Joined Dec 14, 2000 Messages 200 Location CA use the following tag <u></u> Upvote 0 Downvote
Mar 6, 2001 #3 luciddream Programmer Joined Nov 8, 2000 Messages 712 Location 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