Skip to content

Instantly share code, notes, and snippets.

@jmariano13
Created September 30, 2013 18:23
Show Gist options
  • Select an option

  • Save jmariano13/6767923 to your computer and use it in GitHub Desktop.

Select an option

Save jmariano13/6767923 to your computer and use it in GitHub Desktop.
Code School
<a class="more" href="#">More Information</a>
//css
.more {
background: #c09d78 url(arrow.png) right no-repeat;
display: block;
position: relative;
padding: 0 50px;
}
<figure> <img src="wovenwonder.jpg" alt="The Woven Wonder "/></figure>
//css
figure {
border: 2px solid #c5c9cf;
}
<section class="content about">
<h1>Our Store</h1>
<ul class="store">
<li>
<img src="store1.jpg" alt="Our Store" />
</li>
<li>
<img src="store2.jpg" alt="Our Store" />
</li>
<li>
<img src="store3.jpg" alt="Our Store" />
</li>
<li>
<img src="store4.jpg" alt="Our Store" />
</li>
</ul>
</section>
//css
.store li {
height: 150px;
width: 150px;
}
.store li {
height: 150px;
width: 150px;
overflow: hidden
}
.store li {
height: 150px;
width: 150px;
overflow: hidden;
}
.store li img {
height: auto;
width: auto;
}
.store li {
height: 150px;
width: 150px;
overflow: hidden;
}
.store li img {
height: auto;
width: 150px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment