Created
April 2, 2012 04:17
Revisions
-
Jonathan Kemp created this gist
Apr 2, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ /* 1. write it out for older browsers */ /* 2. use the vendor prefix for webkit */ /* 3. use the vendor prefix for moz */ /* 4. include the un-prefixed version last */ #foo { width: 200px; width: -webkit-calc(50% - 100px); width: -moz-calc(50% - 100px); width: calc(50% - 100px); }