Colored Line?

liunx

Guest
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!<!--content-->across or down?<!--content-->well, I guess I might as well tell you both:<br />
<br />
1) horizontal:<br />
<br />
Use tag <hr><br />
<br />
You can add styles to it like:<br />
<br />
<hr style="color: #ff0000; width: 90%; height: 10px;" ><br />
<br />
2) Vertical:<br />
<br />
Use a <div> tag:<br />
<br />
<div style="background-color: #ff0000; width: 10px; height: 90%;"><br />
<br />
You may need to position this as well depending what you want to do with it:<br />
<br />
<div style="background-color: #ff0000; width: 10px; height: 90%; position: absolute; left:50px; top:5%;"><br />
<br />
<br />
OK?<!--content-->
 
Back
Top