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 63 64 65 66 67 68 69 70 71 72
|
.mainContainer{
width: 100%;
height: 100%;
overflow: auto;
background: white;
position: relative;
margin-left: 0px;
}
.mainContainer .pageInfos{
position: relative;
border: 1px solid #2062B9;
padding: 10px;
text-align: left;
font-size: 14px;
}
div.globalTriDim{
position: relative;
margin-top: 40px;
}
/***** Div en position absolute *******/
.titreLigneTop{
width: 390px;
height: auto;
position: absolute;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
border-collapse: collapse;
z-index: 3;
}
.titreLigne {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
overflow-y: scroll;
overflow-x: hidden;
z-index: 1;
}
.titreColonne{
width: 98.3%;
height: 100%;
overflow-x: scroll;
overflow-y: hidden;
position: absolute;
margin: 0px;
padding: 0px;
border-collapse: collapse;
left: 0px;
top: 0px;
z-index: 2;
}
.donnees {
width: 98.4%;
height: 100%;
overflow: hidden;
position: absolute;
left: 0px;
top: 0px;
margin: 0px;
padding: 0px;
z-index: 0;
} |
Partager