Skip to content

Instantly share code, notes, and snippets.

@Grassboy
Forked from minipai/sample.md
Last active December 17, 2015 07:29
Show Gist options
  • Save Grassboy/5573368 to your computer and use it in GitHub Desktop.
Save Grassboy/5573368 to your computer and use it in GitHub Desktop.

HTML A

<div class="box">
    <div class="box-title"></div>
    <div class="box-content"></div>
</div>

CSS A

    .box {...}
    .box-title {...}
    .box-content {...}

HTML B

<div class="box">
    <h1></h1>
    <p></p>
</div>

CSS B

    .box {...}
    .box h1{...}
    .box p {...}

HTML C

<div class="box">
    <h1 class="box-title"></h1>
    <p class="box-content"></p>
</div>

CSS C

    .box {...}
    .box-title {...}
    .box-content {...}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment