chamith7
02-12-2004, 02:24 AM
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
Antoniohawk
02-12-2004, 02:34 AM
How about this?
<html>
<head>
<style>
span#text {
border-bottom: 1px solid black;
width: 300px;
}
</style>
</head>
<body>
<span id="text">10 February 2004</span>
</body>
</html>
DsgnrsTLZAdmin
02-13-2004, 02:53 PM
<html>
<head>
<style type="text/css">
<!--
span#underline { border-bottom: 1px solid black; width: 300px; }
-->
</style>
</head>
<body>
<span id="underline">10 February 2004</span>
</body>
</html>