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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
/* Div regroupant les 4 div qui forment le tableau */
div.globalTriDim{
width: 100%;
height: 90%;
position: relative;
margin: 0px;
padding:0px;
}
/* div d'en haut à gauche */
.topLineTitle{
width: 390px;
height: auto;
position: absolute;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
border-collapse: collapse;
z-index: 3;
}
/* div contenant le titre des lignes, peut contenir des éléments actifs (liens ,etc)*/
.titleLine {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
overflow-y: scroll;
overflow-x: hidden;
z-index: 1;
}
/* div contenant le titre des colonnes, peut contenir des éléments actifs (liens ,etc)*/
.titreColonne{
width: 98.5%;
height: 100%;
overflow-x: scroll;
overflow-y: hidden;
position: absolute;
margin: 0px;
padding: 0px;
border-collapse: collapse;
left: 0px;
top: 0px;
z-index: 2;
}
/* Div contenant les données, liens actifs, input text, bouton, etc */
.donnees {
width: 98.4%;
height: 100%;
overflow: hidden;
position: absolute;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
z-index: 0;
} |
Partager