Created
February 24, 2017 10:43
-
-
Save heimdallrj/540ed1cdf29a07d6c4e6d7089f0bcf66 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Incorrect: | |
<div class="article"> | |
<div class="title">Title</div> | |
<div class="content">Article contents goes here!</div> | |
</div> | |
.article {} | |
.article .title {} | |
.article .content {} | |
// Correct: | |
<article> | |
<h1>Title</h1> | |
<p>Article contents goes here!</p> | |
<ul> | |
<li>list item</li> | |
</ul> | |
</article> | |
article {} | |
article > h1 {} | |
article > p {} | |
article > ul {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment