dongshenling6585 2013-04-10 14:32
浏览 13
已采纳

如何获得连续3的第二项?

I have a webpage layout where there are rows of 3. I need to gove the middle item a special css class. How to do that?

div [div] div
div [div] div
div [div] div
div [div] div

I know with table rows you can get alternating row colors using the ternary operator to detect them:

class="<?= $key % 2 == 0 ? 'odd' : 'even'"

but how to do it for the 2nd in a row of 3?

P.S. I am awful at math, perhaps the answer is quite obvious.

  • 写回答

2条回答 默认 最新

  • doulangdang9986 2013-04-10 14:50
    关注

    Modify the divisor for the modulus test to 3 (for every block of 3 rows); and test for a result of 1 (the 2nd entry from offset 0)

    class="<?= $key % 3 == 1 ? 'odd' : 'even'"
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥30 自适应 LMS 算法实现 FIR 最佳维纳滤波器matlab方案
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥15 Python3.5 相关代码写作
  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动