Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've noticed that some styles are inherited in CSS, and some are not. For example, the text-size style is inherited, but the padding and margin are not inherited by the child blocks. So how to figure out which styles are inherited, and which are not?

share|improve this question

2 Answers

up vote 8 down vote accepted

I'm working with W3C's information, so I'd guess it should be correct. But knowing web browsers (IE specifically), some of these might not be inherited by all browsers:

  1. azimuth
  2. border-collapse
  3. border-spacing
  4. caption-side
  5. color
  6. cursor
  7. direction
  8. elevation
  9. empty-cells
  10. font-family
  11. font-size
  12. font-style
  13. font-weight
  14. font
  15. letter-spacing
  16. line-height
  17. list-style-image
  18. list-style-position
  19. list-style-type
  20. list-style
  21. orphans
  22. pitch-range
  23. pitch
  24. quotes
  25. richness
  26. speak-header
  27. speak-numeral
  28. speak-punctuation
  29. speak
  30. speak-rate
  31. stress
  32. text-align
  33. text-indent
  34. text-transform
  35. visibility
  36. voice-family
  37. volume
  38. white-space
  39. widows
  40. word-spacing
share|improve this answer
Is there any rule of thumb that could be applied to this list? Do the properties have anything in common? – Kaivosukeltaja Apr 10 '11 at 14:46
Many of them are for speech, others are for lists and tables. They're kind of random, but have some vague correlation. – Blender Apr 10 '11 at 14:48
  • azimuth
  • border-collapse
  • border-spacing
  • caption-side
  • color
  • cursor
  • direction
  • elevation
  • empty-cells
  • font-family font-size
  • font-style
  • font-variant
  • font-weight
  • font
  • letter-spacing
  • line-height
  • list-style-image
  • list-style-position
  • list-style-type
  • list-style
  • orphans
  • pitch-range
  • pitch quotes
  • richness
  • speak-header
  • speak-numeral
  • speak-punctuation
  • speak
  • speech-rate
  • stress
  • text-align
  • text-index
  • text-transform
  • visibility
  • voice-family
  • volume
  • white-space
  • widows
  • word-spacing

Source

share|improve this answer
Did you just copy this over from my answer? – Blender Apr 10 '11 at 14:30
1  
@Blender: Nope, I found a slide from http://www.slideshare.net..css-inheritance It was listed as a source before you even posted. :) – Shaz Apr 10 '11 at 14:32
But you originally had an image. Oh well. – Blender Apr 10 '11 at 14:32
@Blender: Yes, I transferred it to text. I didn't copy/paste yours. No worries. – Shaz Apr 10 '11 at 14:34
Not like I care ;) – Blender Apr 10 '11 at 14:35

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.