環境
windows 7 ,IE8
現象
テーブルのある行の文字は時々下記のイメージようにずれる。(文字時々沈んで、行の下線と重なって表示、または次行に重なって表示しまう)

その文字をクリック、または画面大きく拡張すると(例え、105%)その現象が消えるが、
さらに100%に戻るでも、画面が正しく表示できる。
補足:
・その現象は必ず発生するではなく、時々起きる。
・同じデータ同じ画面、上記現象発生する行の時々違う。
・データが少ない場合(10件ぐらい)、多い場合(50件ぐらい)両方発生する。
・同じ画面、同じデータ、IE9の場合、上記の現象が起きない。
テーブル実装ソース例
<table class="search_result_table" id="search_reuslt_id" >
<colgroup span="1" ></colgroup>
<colgroup span="1" ></colgroup>
<colgroup span="1" ></colgroup>
<colgroup span="1" ></colgroup>
<colgroup span="1" ></colgroup>
<colgroup span="1" ></colgroup>
<colgroup span="2">
<col></col>
<col></col>
</colgroup>
<colgroup span="1" style="width:6%"></colgroup>
<colgroup span="2">
<col style="width:55px"></col>
<col style="width:55px"></col>
</colgroup>
<thead>
<tr>
<th rowspan="2">T0</th>
<th>T1</th>
<th>T2</th>
<th>T3</th>
<th>T4</th>
<th>T5</th>
<th colspan="2">T6</th>
<th rowspan="2">T8</th>
<th rowspan="2" colspan="2" class="th_border_right">T9</th>
</tr>
<tr>
<th>T1-2</th>
<th>T2-2</th>
<th>T3-2</th>
<th>T4-2</th>
<th>T5-2</th>
<th>T6-2</th>
<th>T7-2</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td rowspan="2">1D-0</td>
<td>1D-1</td>
<td class="nowrap_item">1D-2</td>
<td>1D-3</td>
<td class="nowrap_item">1D-4</td>
<td>1D-5</td>
<td colspan="2" >1D-6</td>
<td rowspan="2" class="align_center" >1D-8</td>
<td class="align_center">1D-9-1</td>
<td class="align_center">1D-9-2</td>
</tr>
<tr class="odd">
<td>1D-2</td>
<td>1D-3</td>
<td>1D-4</td>
<td class="nowrap_item">1D-5</td>
<td>1D-6</td>
<td class="nowrap_item">1D-7</td>
<td class="num_right">1D-8</td>
<td colspan="2" class="align_center">1D-9</td>
</tr>
</tbody>
</table>
hling_nc