teedaメモ1 table

横の文字列を固定する場合

<table id="MEmpGridXY" height="200px" border="1">
    <colgroup>
        <col span="2" class="T_leftFixed" />
    </colgroup>
    <thead>
        <tr>
            <th>項目名1</th>
	    <th>項目名2</th>
            <th>項目名3</th>
            <th>項目名4</th>
        </tr>
    <thead>
    <tbody>
        <tr>
            <td>項目1</td>
            <td>項目2</td>
            <td>項目3</td>
            <td>項目4</td>
        </tr>
    </tbody>
</table>

この場合横の項目2までが固定となって、それ以降スクロールする。