Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to change the color of my hr tag using css however I tried the code below

hr
{
  color: #123455;
}

doesnt seem to work any help would be appreciated thanks.

+1 to everyone for the help appreciated

share|improve this question
1  
Just FYI, I tried doing what you did with a different color and it works in Firefox 5 Beta, but not IE 9, jsfiddle.net/TGtSd – ColdHawaiian Jun 17 '11 at 6:19
2  
@Keoki Zee Not working for me (Chrome). – Marty Wallace Jun 17 '11 at 6:21
1  
@Marty background-color works in Chrome, but you're right not color...weird... – ColdHawaiian Jun 17 '11 at 6:23
1  
chrome not working background-color too not working for me – koool Jun 17 '11 at 6:29
1  
Okay, just in case anyone wants to test, here's a fiddle I've got going so far, jsfiddle.net/TGtSd/9... – ColdHawaiian Jun 17 '11 at 6:32

9 Answers

up vote 64 down vote accepted

I think you should use border-color instead of color, if your intention is to change the color of the line produced by <hr> tag.

Although, it has been pointed in comments that, if you change the size of your line, border will still be as wide as you specified in styles, and line will be filled with the default color (which is not a desired effect most of the time). So it seems like in this case you would also need to specify background-color (as @Ibu suggested in his answer).

Just for the reference, famous html5boilerplate project in its default stylesheet specifies the following rule:

hr { display: block; height: 1px;
    border: 0; border-top: 1px solid #ccc;
    margin: 1em 0; padding: 0; }
share|improve this answer
1  
The problem with border-color is that if you make the hr larger, it just colors the border, jsfiddle.net/TGtSd/9... – ColdHawaiian Jun 17 '11 at 6:31
Wow, gotcha. Will delete teh useless answer in a minute. Quite a lot of them around, never thought that color of <hr> could be such a problem. EDIT: Okay, answer seems to be useful for the OP, great =) – Anton Strogonoff Jun 17 '11 at 6:37
@Anton You don't need to delete answser! – ColdHawaiian Jun 17 '11 at 6:37
@Anton just edit yours to take this new information into account, it's still valuable! – ColdHawaiian Jun 17 '11 at 6:38
EDIT: Edited in the correction, thanks. – Anton Strogonoff Jun 17 '11 at 6:43
show 2 more comments

border-color works in Chrome and Safari
background-color works in Firefox and Opera
color works in IE7+

share|improve this answer
hr
{
  background-color: #123455;
}

the background is the one you should try to change

You can also work with the borders color. i am not sure i think there are crossbrowser issues with this. you should test it in differrent browsers

share|improve this answer
2  
I tried it in Firefox 5 Beta, IE 9, Chrome, Opera, and Safari...you're good, they all work ;) – ColdHawaiian Jun 17 '11 at 6:24
1  
@keoki Zee: thank you for making the test – Ibu Jun 17 '11 at 6:26
1  
doesnt work in chrome for me – koool Jun 17 '11 at 6:31
1  
@kool, which part doesnt work? background-color? or border-color? i just tested border-color: blue; and it worked in chrome – Ibu Jun 17 '11 at 6:33
1  
@koool Here's a fiddle, is it really not working? jsfiddle.net/TGtSd/9 – ColdHawaiian Jun 17 '11 at 6:35
show 1 more comment

I think this can be usefull. this was simple CSS selector.

hr{background-color:red;height:1px;border:0px;}
share|improve this answer
hr
{
color: #f00;
background-color: #f00;
height: 5px;
}
share|improve this answer

tested in ff, opera, ie, chrome and safari

hr{
  border-top: 1px solid red;
}

see the fiddle http://jsfiddle.net/HPSjU/

share|improve this answer

Some browsers use the color attribute and some use the background-color attribute. To be safe:

hr{
    color: #color;
    background-color: #color;
}
share|improve this answer

if u use css class then it will be taken by all 'hr' tags , but if u want for a particular 'hr' use the below code i.e, inline css

<hr style="color:#99CC99" />

if it's not working in chrome try below code:

<hr color="red" />
share|improve this answer
1  
Doesn't work in Chrome, jsfiddle.net/TGtSd/7 – ColdHawaiian Jun 17 '11 at 6:26
1  
i tried in chrome only – deepi Jun 17 '11 at 6:31
1  
<hr color="red" /> doesn't even use CSS at all... – ColdHawaiian Jun 17 '11 at 6:39
but it (<hr color="red" />) working perfectly in my chrome – deepi Jun 17 '11 at 6:44
1  
yes, okay, I'll agree with that... – ColdHawaiian Jun 17 '11 at 6:46

Only border-top with color is enough to make the line in different color.

hr{ border-top: 1px solid #ccc; }

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.