table {
border: 1px solid #000000;
border-collapse: collapse;
}
I use the above code that creates a table with a 1 pixel black border around it which works fine, but I am trying to make it have another 1 pixel red border below it, for example:
I tried border: 1px double #000000 #FF0000;
but it doesn't seem to work.
How can I achieve such style?