How to make a plain table?
in Other
Hello, I would like to have a plain table with no borders, backgrounds, mouse-over, text centered etc. What can I add to my custom css?
Thank you.
Comments
please send us url to page where you got this table and we`ll see what we can do for you. Because it is not possible to clear all styles inside table, each element inside table must be clear manually one by one.
table tr:first-child td { background: none; }table tr:hover td { color: #6E6262; }
table tr td { border: none; text-align: left; }
table tr:nth-child(2n) td { background: none !important; }
table tr:first-child td { background: none; }table tr:hover td { color: #6E6262; }
table tr td { border: none; text-align: left; }
table tr:nth-child(2n) td { background: none !important; }