Connecting Tech Pros Worldwide Forums | Help | Site Map

CSS - Border before Border

Familiar Sight
 
Join Date: Sep 2006
Posts: 142
#1: 3 Weeks Ago
Good day, I need help

I have row with background black & border black, i would like a thin white border just before the border.
so the outcome would be
black
white
black

i don't know if it is possible
Expand|Select|Wrap|Line Numbers
  1.     color: #fff; 
  2.     font-weight : normal;
  3.     background-color: #000;
  4.     border-top:1pt solid #000;
  5.     border-bottom:1pt solid #000;
  6.  
Please help

Markus's Avatar
Moderator
 
Join Date: Jun 2007
Location: York, England, with wolves.
Posts: 4,948
#2: 3 Weeks Ago

re: CSS - Border before Border


You might use the border-style: double property.
Familiar Sight
 
Join Date: Sep 2006
Posts: 142
#3: 3 Weeks Ago

re: CSS - Border before Border


Thank You, it works :)
Reply