Home Messages Index
[Date Prev][Date Next][Thread Prev][Thread Next]
Author IndexDate IndexThread Index

Re: Creating a dashed line

John Abbler wrote:
I added these lines to my stylesheet:

testelement {
        border-top: 3px dotted #000000;
        margin-top: 5px;
}

That's incorrect CSS.

The I tried to add this to my document:
<testelement />

You can't make up HTML elements. :-(

Try this:

CSS:

.dashes {
   border-top: 3px dashed #000000;
   margin-top: 5px;
}

HTML:

<hr class='dashes'>

Alter to suit. Maybe even add a width in em or something.
   width: 10em;

And please don't top-post.

--
   -bts
   -This space intentionally left blank.

[Date Prev][Date Next][Thread Prev][Thread Next]
Author IndexDate IndexThread Index