Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Let's say I have two divs like this:

<div name="parent" style="color:blue;padding:5px">
  <div name="child" style="background:red">
    Text that ignores color:blue and padding:5px, but still obeys background:red.
  </div>
</div>

I want the text in the div named child to ignore all css that is not defined by child. I know I can do this by defining every css option available to default, but that would be very bulky for my current project. I don't want to use iframes either. How can I do this? Thanks.

share|improve this question

2 Answers

up vote 1 down vote accepted

I know I can do this by defining every css option available to default, but that would be very bulky for my current project.

Unfortunately for you, that's what has to be done:

<div name="parent" style="color:blue;padding:5px">
  <div name="child" style="background:red;color:#000">
    Text that ignores color:blue and padding:5px, but still obeys background:red.
  </div>
</div>

padding is not inheritable, so you don't need to reset that. Check the "Inherited" column here to see which you need to reset: http://www.w3.org/TR/CSS21/propidx.html

share|improve this answer
Damn, I was hoping there was just an html attribute that was like cssinherit="false". Oh well, that's not nearly as many as I thought there'd be anyway. – Gus Aug 19 '11 at 15:21

The "C" in CSS = "cascading", which means elements inherit properties from their parents.

You might be able to write some script to help automate this, but you really do need to overwrite the parent's properties. That's the way CSS works.

P.S. you should be using IDs and classes, not "name".

share|improve this answer
1  
No. Cascading describes the process which decides which one of any number of conflicting rules applies to an element. The process by which elements inherit properties from their parents is called inheritance – Quentin Aug 19 '11 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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