Hi,
I have a table in my page, I want to give alternate effects to each row,
so i have added tr.odd and tr.even in the styles sheet,
Now styles are applied in Firefox, but its not applied in IE6
Can some please help me out.
Thanks in Advance
I have a table in my page, I want to give alternate effects to each row,
so i have added tr.odd and tr.even in the styles sheet,
Code:
tr.odd {
margin-left: 5px;
padding-left: 5px;
padding-right: 5px;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000;
text-align:center;
background-color: #FEE8C7;
height: 20px;
padding-top: 3px;
cursor:pointer;
}
tr.even {
margin-left: 5px;
padding-left: 5px;
padding-right: 5px;
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000;
text-align: center;
background-color: #ffffff;
height: 20px;
padding-top: 3px;
cursor:pointer;
}
Now styles are applied in Firefox, but its not applied in IE6
Can some please help me out.
Thanks in Advance
Comment