How to display color bar in html?

I cannot use the style for the hr tag. Can someone help me display a color bar on my jsp page using html?

+4
source share
8 answers

<hr> doesn't use color, he uses border-color

+9
source

You can apply border color instead of color

<style>
hr { 
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
border-color:red;
} 
</style>
+4
source

hr:first-child{color:red;}
hr:nth-child(2){color:yellow;}
hr:last-of-type{color:blue;}
<hr><hr><hr>
Hide result
+1
<hr style="height:1px;border-top:1px solid #f00" />

.

+1

<HR COLOR="green" WIDTH="60%"> IE, firefox chrome htmlgoodies

CSS, border-color,

, , _.

+1
<hr size="20" color="blue">
+1
<hr color="yellow"  width="100%" >
+1
hr {display: block; height:1px; float:left; border-bottom:1px solid #444444; } 

ur css..

0

All Articles