Last active
December 24, 2015 08:49
-
-
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
This file contains hidden or 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
<?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