Selector Inheritance
While CSS3 supports the Document Object Model (DOM) hierarchy, it does not allow selector inheritance. Inheritance is done by inserting a line inside of a code block that uses the @extend keyword and references another selector. The extended selector's attributes are applied to the calling selector.
.error { border: 1px #f00; background: #fdd; } .error.intrusion { font-size: 1.3em; font-weight: bold; } .badError { @extend .error; border-width: 3px; }Would compile to:
.error, .badError { border: 1px #f00; background: #fdd; } .error.intrusion, .badError.intrusion { font-size: 1.3em; font-weight: bold; } .badError { border-width: 3px; }Sass supports multiple inheritance.
Read more about this topic: Sass (stylesheet Language)
Famous quotes containing the word inheritance:
“Someone in the crowd said to him, Teacher, tell my brother to divide the family inheritance with me. But he said to him, Friend, who set me to be a judge or arbitrator over you?”
—Bible: New Testament, Luke 12:13,14.
Jesus.