I have an external css file which defines tables within an ID div like
#content table {margin:0; border-collapse:collapse;}
#content table.width100 {width:100%;}
#content table th, #content table td {padding:5px 5px;}
I also have a section
table.nostyle, table.nostyle th, table.nostyle td {border:0 !important;}
table.nostyle th {background:none !important; text-align:left !important;}
table.nostyle th, table.nostyle td {padding:3px 5px !important;}
I can use both in my code within a div-container "content" with normal table-tags either with or without class attribute. Whenever I try to define a new class for a table inside content e.g. like
#content table.cgd {border-spacing: 10px; border: none; border-collapse: separate;}
its not working - I always get the css definition for the content-default-table although I set the class to "cgd". I am afraid I have a css error - maybe someone has an idea?