Skip to content

Instantly share code, notes, and snippets.

@tosipaulo
Created October 26, 2017 15:11
Show Gist options
  • Save tosipaulo/37e111ff2318acc93b05d0f36490e377 to your computer and use it in GitHub Desktop.
Save tosipaulo/37e111ff2318acc93b05d0f36490e377 to your computer and use it in GitHub Desktop.
.card {
width: 290px;
overflow: hidden;
border-radius: 5px;
border: 1px solid #d4d4d5;
}
.card img {
display: block;
}
.card div {
background: #fff;
padding: 15px;
}
.card div h1 {
line-height: 3;
font-size: 25px;
}
.card div p {
color: #888
}
<article class="card">
<img src="http://fakeimg.pl/300x250/009EEB/FFF/?text=Imagem.jpg" alt="" />
<div>
<h1>Title</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</div>
</article>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment