I'm trying to create a calendar with for each day a box, separated by small margins. Problem: the margins are not applied. I added red borders around the dates, and as you can see in the code there's no margin between borders. I removed all extraneous CSS, and even temorarily added an !important
property (which I hate, go figure how desperate I am), no avail. I absolutely can't see what I'm doing wrong, so any help is appreciated.
Code is here.
edit
I added the code referred to in hrunting's answer
#calendar table {
border-collapse: separate;
border-spacing: 2px 2px;
}
to my code, but it doesn't seem to make any difference. (I removed the red border. You should see when it works if you have separate boxes for the dates.)