I inserted a default table style in SharePoint and I would like to write some CSS rules to remove the other table styles. The default style should be the one which is added by me, the others must be removed.
So far, I tried this way but doesn't seem to be working:
#TableStyle1-Menu {
display: none;
}
How shall I write the CSS rule to work as expected?
