Skip to content

Instantly share code, notes, and snippets.

@mrtrimble
Created January 15, 2014 05:33
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 mrtrimble/8431333 to your computer and use it in GitHub Desktop.
Save mrtrimble/8431333 to your computer and use it in GitHub Desktop.
A Pen by Ryan Trimble.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>title</title>
</head>
<body>
<div class="container">
<div class="blocks">
<h1>Block 1</h1>
</div>
<div class="blocks">
<h1>Block 2</h1>
</div>
<div class="blocks">
<h1>Block 3</h1>
</div>
</div>
</body>
</html>
.container{
margin: 0 auto;
width:960px;
border:1px solid #000;
}
.blocks{
width:310px;
display:inline-block;
border:1px solid red;
margin: 2.5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment