Skip to content

Instantly share code, notes, and snippets.

@astratagem
Last active December 24, 2015 08:49
Show Gist options
  • Select an option

  • Save astratagem/6773291 to your computer and use it in GitHub Desktop.

Select an option

Save astratagem/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