Using CSS, is there a way I can add an underline to some text that continues to the right of the table. Here's a crude example:
10 February 2004______________________________
Thanks
10 February 2004______________________________
Thanks
<html> <head> <style> span#text { border-bottom: 1px solid black; width: 300px; } </style> </head> <body> <span id="text">10 February 2004</span> </body> </html>
Comment