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;
}
by Alex Cowan
<div id="divvied">
<div class="comment">
hello
</div>
</div>
<div id="divvied" class="comment">
hello2
</div>
#divvied {
color: red;
}
.comment {
color: blue;
}