Web Analytics Made Easy -
StatCounter Underline - CodingForum

Announcement

Collapse
No announcement yet.

Underline

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Underline

    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

  • #2
    How about this?
    Code:
    <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


    • #3
      <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>
      ~Designer's Toolz~

      Comment

      Working...
      X