4

<logic:iterator>このようなテーブルデータを表示するためにタグを使用しています

    <logic:iterate id="LT" name="lastToken" scope="request">
        <tr>
          <td class="TblHometd"><bean:write name="LT"  property="tokennumber" format="#"/></td>
          <td class="TblHometd"><bean:write name="LT"  property="adjustmenttime" format="hh:mm:ss"/></td>
          <td class="TblHometd"><bean:write name="LT"  property="actualfinishedtime" format="hh:mm:ss"/></td>
          <td class="TblHometd"><bean:write name="LT"  property="consultationtype"/></td>
          <td class="TblHometd"><bean:write name="LT"  property="mobileno" format="#"/></td>
          <td class="TblHometd"><bean:write name="LT"  property="consultationstatus"/></td>
          <td class="TblHometd"><bean:write name="LT"  property="smsstatus"/></td>
        </tr>
   </logic:iterate>

background color for alternate rows今、私はこれを行う方法を変更したい????

前もって感謝します

4

2 に答える 2

2

CSS:

table#LT tr:nth-child(odd) {
    background-color: #F00; 
}
于 2013-02-14T08:05:16.217 に答える