Skip to content

Instantly share code, notes, and snippets.

@montchr
Last active December 24, 2015 08:49
Show Gist options
  • Save montchr/6773291 to your computer and use it in GitHub Desktop.
Save montchr/6773291 to your computer and use it in GitHub Desktop.
Inline block CSS grid system in PHP loop http://codepad.viper-7.com/MdpMjx
<?php
$list = array("foo", "bar", "baz");
?>
<div class="grid">
<!--
<?php foreach ($list as $item) { ?>
--><span class="grid__item one-third"><?php echo $item; ?></span><!--
<?php } ?>
-->
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment