Possible Duplicates:
How to alternate HTML table row colors using JSP?
Table row - Giving alternate colors

can any one provide basic code for dynamically adding rows in a table with alternate colors using css in jsp file kindly provide this code

link|improve this question
have you tried to search for your problem? – oezi Oct 29 '10 at 16:11
feedback

closed as exact duplicate by Sean Patrick Floyd, oezi, Lazarus, BalusC, meagar Oct 29 '10 at 17:55

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

4 Answers

<table>
<?
    boolean evenRow = true;
    for (int i = 0; i < numRowsToDisplay; i++)
    {
?>

<tr class="<?= evenRow? "evenrowstyle" : "oddrowstyle" ?>"><td>whatever</td></tr>

<?
        evenRow = !evenRow;
    }
?>
</table>
link|improve this answer
thanks riley for your support. – blood orchid Oct 30 '10 at 9:47
feedback

Basically, there are two options:

  • either you have to add a style class to all even (or odd) rows in your jsp
  • or you can do it dynamically on the client with javascript (if that's an option)
link|improve this answer
thanks seanizer – blood orchid Oct 30 '10 at 9:48
feedback

Take a look at the CSS odd and even selectors.

link|improve this answer
Do browsers support that? IE specifically? – Sean Patrick Floyd Oct 29 '10 at 16:12
It's officially CSS 3 I believe so not before IE9, the alternative is to look at jQuery.com as that includes a css selector that does support these constructs and would allow you to create the alternating effect you are looking for. – Lazarus Oct 29 '10 at 16:14
answering my own question: No they don't. quirksmode.org/css/contents.html#t38 – Sean Patrick Floyd Oct 29 '10 at 16:14
@seanizer - True but hey, IE might not be a consideration for the OP. – Lazarus Oct 29 '10 at 16:18
If he's that lucky :-) – Sean Patrick Floyd Oct 29 '10 at 16:37
show 1 more comment
feedback

as in

<style>
#TableID tr:nt-child(odd){
background-color:white;
}

#TableID tr:nth-child(even){
background-color:silver;
}
</style>
link|improve this answer
fails in several browsers: quirksmode.org/css/contents.html#t38 – Sean Patrick Floyd Oct 29 '10 at 16:16
thanks father storm – blood orchid Oct 30 '10 at 9:48
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.