The subject says it all. Looking for a (polyfill) code that will reset all the inherited CSS properties on a given element (such as <img>, <a> or <p>).

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

May be you can use HTML5 boilerplate or css Reset to reset all the inherited CSS properties.

check these articles http://html5boilerplate.com/ ,

http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/

link|improve this answer
I am looking for the code that will probably also be updated as soon as new properties are introduced for example. Does it seem logical that such a code exists (somewhere)? – BreakPhreak Nov 14 '11 at 9:44
ah, meyerweb.com/eric/tools/css/reset - this one does the job. thanks. – BreakPhreak Nov 14 '11 at 10:22
feedback

What you could do is create one of those elements but not attach it to the DOM. It wouldn't then receive any of the styles from your stylesheets. Then, using window.getComputedStyle, you will get a list of the default styles.

var a = document.createElement('a');
var s = window.getComputedStyle(a);

myTargetEl.style.color = s.color;  // or, use a loop to do all of them
link|improve this answer
thanks! what I am looking for is rather the code that will reset the inherited styles on the just shown element. – BreakPhreak Nov 14 '11 at 9:42
@BreakPhreak that should be what the code above does. The s variable contains all the default styles for an <a> tag. You can then apply it to whichever element(s) you want. – nickf Nov 15 '11 at 9:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.