制作 3 列,最后一类循环
我想制作 3 列并将 last
类添加到第三列。我尝试了这段代码:
<?php for ($i = 0; $i < 9; $i = $i + 4) { //can't touch this line ?>
<?php for ($j = $i; $j < ($i + 4); $j++) { //can't touch this line ?>
<?php $counter=0; ?>
<div class="span-5<?php if ($counter % 3 == 0) { echo " last"; } ?>">
Info
</div>
<?php } ?>
<?php } ?>
但没有帮助。 (它将 last
类分配给第二列)
I want to make a 3 columns and add last
class to third column. I tried this code:
<?php for ($i = 0; $i < 9; $i = $i + 4) { //can't touch this line ?>
<?php for ($j = $i; $j < ($i + 4); $j++) { //can't touch this line ?>
<?php $counter=0; ?>
<div class="span-5<?php if ($counter % 3 == 0) { echo " last"; } ?>">
Info
</div>
<?php } ?>
<?php } ?>
but it doesn't help. (it assigns last
class to second column)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在适当的时候添加一个
$counter++
,它就会起作用。Add a
$counter++
at the right time and it will work.试试这个。它可能对你有帮助。
谢谢。
try this.it may help you.
Thanks.
或者只需将您的
$counter
设置为$j+1
。Or just set your
$counter
to$j+1
.