Skip to content

Instantly share code, notes, and snippets.

@tylergaw
Created July 20, 2012 03:26
Show Gist options
  • Save tylergaw/3148470 to your computer and use it in GitHub Desktop.
Save tylergaw/3148470 to your computer and use it in GitHub Desktop.
Messing with calc
/**
* Messing with calc
*/
body {
margin: 0;
}
div {
background-color: #353535;
color: #fff;
overflow: hidden;
padding: 1em;
text-align:center;
}
p {
background-color: purple;
border: 4px solid #ccc;
display: inline-block;
float: left;
margin-left: 0.5%;
width: -webkit-calc(33.3% - 14px);
}
p:first-child {
margin-left: 0;
}
<div>
<p>Testing calc</p>
<p>Testing calc</p>
<p>Testing calc</p>
</div>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment