I have a table that is dynamically generated by PHP. I am hoping that I can use CSS to apply a background color based on where the table row is odd/even, i.e. the background color rotates every other row.
Does that make sense? Thanks!
|
|
|
Try this : css:
in php while printing rows (trs)
|
|||
|
You can use the nth-of-type() or nth-child() selector in CSS3. Supported by all modern Browsers. For example...
|
|||
|
|
|
In theory it's as easy as
|
|||||
|
|
You can do something like this:
Now you can use Note that above will work in all browsers including IE6. |
|||||||
|
|
In CSS define the below class
In PHP Code use the below technique
|
||||
|
|
|
i guess the best option is to use the internal iterator of foreach : example :
|
|||
|
|
|
just do like this
|
|||
|
|
|
this is My way, you can try this
... |
|||
|
|
|
For have a small php inside your html you can use
use alternate between even and odd. |
|||
|
|