テーブル ヘッダーをフリーズして、ヘッダーの幅と残りの行を一致させることができましたが、ヘッダーの下から最初の 2 行を表示することができません。
table {
font-family:Arial, Helvetica, sans-serif;
color:#666;
font-size:12px;
background:#eaebec;
border:#ccc 1px solid;
border-radius:3px;
border-collapse:collapse;
border-spacing: 0;
box-shadow: 0 1px 2px #d1d1d1;
}
table th {
padding:2px 2px 2px 2px;
border-top:0;
border-bottom:1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
background: #ededed;
}
table th:first-child {
text-align: left;
}
table tr:first-child th:first-child {
border-top-left-radius:3px;
border-left: 0;
}
table tr:first-child th:last-child {
border-top-right-radius:3px;
}
table tr {
text-align: center;
}
table td:first-child {
text-align: left;
border-left: 0;
}
table td {
padding:2px 2px 2px 2px;
border-top:0;
border-bottom:1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
white-space: nowrap;
}
table tr:last-child td {
border-bottom:0;
}
table tr:last-child td:first-child {
border-bottom-left-radius:3px;
}
table tr:last-child td:last-child {
border-bottom-right-radius:3px;
}
table tr:hover td {
background: #F7FE2E;
}
table th,
table td {
width: 65px;
}
table tr,
table td {
width: 65px;
min-width: 65px;
}
#wrapper {
width: auto;
height: 850px;
overflow-x: scroll;
overflow-y: scroll;
}
thead {
position: fixed;
}
tbody {
position: relative;
}
それで、最初の2行をヘッダーの下から移動する方法について、誰かが私を正しい方向に向けることができますか? さらに説明する必要がある場合、または質問に追加する必要がある場合はお知らせください。
http://jsfiddle.net/FyJwZ/4/を説明していないと思うことをいくつか追加しました