1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#div-datagrid{
overflow-x:auto;
overflow-y:hidden;
clear:both;
width:1020px;
}
th, td{
padding:3px 5px;
}
.fixed-header{
position:relative;
}
.table-th-fixed{
float: left;
height:222px;
overflow-x: hidden;
}
/*.table-th-fixed thead tr {position:relative;float:left;}*/
.table-th-fixed thead tr th{
background:#fde1f7;
font-size:12px;
border:1px solid black;
border-right:0;
font-weight:normal;
}
.table-th-fixed tbody td{
background:white;
font-size:12px;
border:1px solid black;
border-right:0;
}
.table-th-fixed tbody{
/*display: block;*/
height: 200px;
overflow-y:auto;
} |
Partager