Skip to content

Instantly share code, notes, and snippets.

@fcsonline
Created December 2, 2016 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fcsonline/7249772e12901ea4962e84b5822bc908 to your computer and use it in GitHub Desktop.
Save fcsonline/7249772e12901ea4962e84b5822bc908 to your computer and use it in GitHub Desktop.
Cart - CartList markup
<ul class="cart">
<li>
<header>Item 1</header>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing.</p>
<button>Remove from cart</button>
</li>
<li class="premium selected">
<header>Item 2</header>
<p>Fusce vel neque sit amet felis fermentum cursus vitae.</p>
<button>Remove from cart</button>
</li>
<li class="selected">
<header>Item 3</header>
<p>Vel neque sit amet vitae suscipit nibh.</p>
<button>Remove from cart</button>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment