Re: Cell Border: Change color of bottom border

Anonymous
Not applicable

Cell Border: Change color of bottom border

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
Tags (1)
2 REPLIES 2
Alok_Ramsisaria
Level 10

Re: Cell Border: Change color of bottom border

Hi Christine,

You can use this - 

border-bottom: 1px solid #000;

Hope this helps!
Anonymous
Not applicable

Re: Cell Border: Change color of bottom border

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.