How to remove all inherited CSS formatting for a table?

后端 未结 4 693
感情败类
感情败类 2020-12-13 14:27

I have a table which has a certain style due to the CSS file for the page (it has blue borders, etc...).

Is there a simple way to remove the CSS for that specific ta

4条回答
  •  星月不相逢
    2020-12-13 14:53

    Try this.

    From Eric Meyer's Reset CSS

    table, caption, tbody, tfoot, thead, tr, th, td {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        font-size: 100%;
        vertical-align: baseline;
        background: transparent;
    }
    

提交回复
热议问题