How to remove all inherited CSS formatting for a table?

后端 未结 4 694
感情败类
感情败类 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:58

    If you want to make sure you unset the CSS for all properties you can use the following:

    table, caption, tbody, tfoot, thead, tr, th, td {
        all: unset;
    }
    

    MDN Documentation on the all property: https://developer.mozilla.org/en-US/docs/Web/CSS/all

提交回复
热议问题