<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;">So I finally got my Java class to open a css file.</p>
<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;"> </p>
<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;"><a class="bbc_url" href="
http://birtworld.blogspot.com/2007_07_01_archive.html" title="External link">
http://birtworld.blo...01_archive.html</a></p>
<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;"> </p>
<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;">This link has a great list of things you can control with CSS. It also says that <span style="color:rgb(51,51,51);font-family:Verdana, Arial, sans-serif;font-size:13px;">Style Names have changed between 2.1 and 2.2. I am use version 4.2 so some of them have probably changed by now. I was wondering if there is documentation on what all I can style in my reports.</span></p>
<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;"> </p>
<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;"><span style="color:rgb(51,51,51);font-family:Verdana, Arial, sans-serif;font-size:13px;">I was also wondering if there is a way to do things like change the color of alternating rows with CSS. I know how to do this manualy in code but I would like to see if I can do this in CSS.</span></p>
<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;"> </p>
<p style="color:rgb(40,40,40);font-family:'Source Sans Pro', sans-serif;">I tryied useing nth-child even and odd but it did not work.</p>
<pre class="_prettyXprint _lang-">
.table-detail:nth-child(odd){
background: #b8d1f3;
}
.table-detail:nth-child(even){
background: #dae5f4;
}
</pre>