how can i neuter all css assigned to an element? suppose i work in enviroment that all SPAN element properties defined by a main css file. in one case i want to redesign my SPAN. I always reset all the primary assigned properties, then define some of them again. i want to know if there is another solution to reset them all?
Add id to that specified span and style it as you want. I use Eric Meyer's reset styles in my own projects.
yes, currently i do this, but in this case element inherits styles from main file. & i don't want this happen. whats this?
You cannot just reset an element, that's why you have to add an id to it and overwrite all styles. Eric Meyer's reset styles is a list of elements with unified styles to be used in cross-browser webdevelopment. It does reset all browsers' default values.
Actually I can't post a link (Live links and signatures are not available to you yet (read the FAQ).), but here it is: apartamentwladyslawowo.eu/style.css
Normal behaviour. Get the basics of CSS (child elements inherit from parent elements). By the way: CSS reset has nothing to do with this case.