No Inheritance

No Inheritance

by Alex Cowan

HTML

<div id="divvied">
  <div class="comment">
    hello
  </div>
</div>

<div id="divvied" class="comment">
    hello2
</div>

CSS

#divvied {
  color: red;
}

.comment {
  color: blue;
}