For some reason, I'm having considerable trouble getting FF to do what I want.
First off,
html;
<hr>
css;
hr{color:black;
background-color:black;
height:3px;}
In FireFox I just keep getting a gray line....I want a black line! I must be missing something, but this is really bugging me. Anyhelp?
I'm having other problems to, but this is a start just incase I'm just totally missing something.
KTry this.
hr {
height: 0;
border-bottom: 3px solid #000;
}Also if you examine your content the vast majority of <hr>s actually should be top or bottom borders.
First off,
html;
<hr>
css;
hr{color:black;
background-color:black;
height:3px;}
In FireFox I just keep getting a gray line....I want a black line! I must be missing something, but this is really bugging me. Anyhelp?
I'm having other problems to, but this is a start just incase I'm just totally missing something.
KTry this.
hr {
height: 0;
border-bottom: 3px solid #000;
}Also if you examine your content the vast majority of <hr>s actually should be top or bottom borders.