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
| ._tab_fix_details {
font-size: 12px;
border-collapse: collapse;
}
._tab_fix_details .header td {
font-weight: bold;
background-color:#CCCCCC;
text-align:center;
border-style:solid;
border-color: black;
border-width: thin;
-height:1%;
/*width:330px;*/
}
.tab_fix_details td {
white-space: nowrap;
background-color: white;
}
.ligne_details{
background-color:white;
}
._div{
float:left;
}
.sfhtTable,
.sfhtData{
border-style:solid;
border-color: black;
border-width: thin;
}
.div_decal_gauche{
padding-left:50px;
}
.colonne_1{
width:75%;
}
.colonne_2{
width:25%;
}
En fait ma page est composée de 4 tableaux l'un a coté de l'autre qui ne peuvent en aucun cas etre contenu dans un autre tableau.
<div class="_div div_decal_gauche" style="display: inline">
<table id="tableau1" class="_tab_fix_details scrollableFixedHeaderTable" cellspacing="1">
<!-- En-tête du tableau -->
<tr class="header">
<td colspan="2"><?php echo c_mess007; ?></td>
</tr>
<tr>
<td class="colonne_1">...</td>
....
</tr>
</table>
</div> |
Partager