Cell Border: Change color of bottom border | Community
Skip to main content
September 19, 2014
Question

Cell Border: Change color of bottom border

  • September 19, 2014
  • 2 replies
  • 1181 views
I'm trying to apply a blue bottom border to a cell. - The bottom border works with: 
border-bottom-width: 1px; border-bottom-style: solid;

However, as soon as I try to add the colour either in this line or at the bottom, it will change the border to the whole cell.

Is there a way to change the border colour so the borders remains for the bottom of the cell only?
Thanks. Christine
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

Level 10
September 19, 2014
Hi Christine,

You can use this - 

border-bottom: 1px solid #000;

Hope this helps!
September 23, 2014
Thanks, Alok. It translates this back into 'border-bottom-width: 1px; border-bottom-style: solid;' and ignores the colour instruction. Maybe it's just not possible.