Skip to content

Instantly share code, notes, and snippets.

@tomkrush
Created February 7, 2014 21:05
Show Gist options
  • Save tomkrush/8871848 to your computer and use it in GitHub Desktop.
Save tomkrush/8871848 to your computer and use it in GitHub Desktop.
Calculating Columns
<?php
function calculateColumnWidth($maxWidth, $columns, $gutter, $margin) {
return floor(($maxWidth-(($columns - 1) * $gutter + 2 * $margin)) / $columns);
}
echo calculateColumnWidth(960, 5, 20, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment