Alternating Row Colors in Bootstrap 3 - No Table

后端 未结 6 1969
天涯浪人
天涯浪人 2020-12-24 11:48

I am looking for a way to do alternating row colors in a responsive layout in Bootstrap 3. I cannot figure out how to do it without a LOT of extensive, confusing CSS and was

6条回答
  •  天涯浪人
    2020-12-24 12:26

    The thread's a little old. But from the title I thought it had promise for my needs. Unfortunately, my structure didn't lend itself easily to the nth-of-type solution. Here's a Thymeleaf solution.

    .back-red {
      background-color:red;
    }
    .back-green {
      background-color:green;
    }
    
    
    

提交回复
热议问题