Click to See Complete Forum and Search --> : Colored Line?


mikechang2000
08-19-2003, 08:13 AM
Can someone tell me how to make colored line? I also need to know how to change the width of the line and length. Thanks in Advance!

DaveSW
08-19-2003, 08:24 AM
across or down?

DaveSW
08-19-2003, 09:51 AM
well, I guess I might as well tell you both:

1) horizontal:

Use tag <hr>

You can add styles to it like:

<hr style="color: #ff0000; width: 90%; height: 10px;" >

2) Vertical:

Use a <div> tag:

<div style="background-color: #ff0000; width: 10px; height: 90%;">

You may need to position this as well depending what you want to do with it:

<div style="background-color: #ff0000; width: 10px; height: 90%; position: absolute; left:50px; top:5%;">


OK?