Created
July 20, 2012 03:26
-
-
Save tylergaw/3148470 to your computer and use it in GitHub Desktop.
Messing with calc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<p>Testing calc</p> | |
<p>Testing calc</p> | |
<p>Testing calc</p> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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