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; } 

http://www.sitepoint.com/css3-inheritance-tips-tricks/

http://www.w3.org/tr/css-cascade-3/#inherit-initial


Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -