How to remove a CSS style completely and not replacing it? -
i have style given in following way:
td,th{padding:0} now want remove style dynamically , not override value because need inline/default value set browser. having idea how this, feel free answer.
in css 3, might want use
th,td { padding: unset; } or
th,td { padding: initial; }
Comments
Post a Comment