Categories > TinyButStrong general (FR) >

Grouping blocks && CSS

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: oio
Date: 2006-11-20
Time: 11:33

Grouping blocks && CSS

Bonjour,

<link href="css/consult.css" rel="stylesheet" type="text/css">
<body>

<div align="center"><br>
  <table width="50%"  border="0" cellpadding="0" cellspacing="0">
    <tr bgcolor="#272b88">
      <td align="left" valign="top" bgcolor="#272b88"><img src="img/coins_272b88_HD.jpg" width="10" height="10"></td>
      <td width="70%" bgcolor="#272b88"><span class="Style5">[report.NomAgence;block=tr;headergrp=NomAgence]</span></td>
      <td width="30%" bgcolor="#272b88">&nbsp;</td>
      <td align="right" valign="top" bgcolor="#272b88"><div align="right"><img src="img/coins_272b88_HG.jpg" width="10" height="10"></div></td>
    </tr>
  </table>
  <br>
  <table width="50%"  border="0" cellpadding="0" cellspacing="0" class="tab">
    <tr>
      <td>&nbsp;</td>
      <td width="70%">[report.LibStatut;block=tr;headergrp=LibStatut]</td>
      <td width="30%"><p align="right">[report.Qte;block=tr;headergrp=Qte]</p></td>
      <td>&nbsp;</td>
    </tr>
  </table>
  <br>
  <table width="50%"  border="0" cellspacing="0" cellpadding="0">
    <tr bgcolor="#272b88">
      <td align="left" valign="bottom" bgcolor="#272b88"><img src="img/coins_272b88_BG.jpg" width="10" height="10"></td>
      <td width="100%">&nbsp;</td>
      <td width="100%"><span class="Style13"><span class="Style8">[report;block=tr;footergrp=NomAgence]</span> </span></td>
      <td align="right" valign="bottom" bgcolor="#272b88"><img src="img/coins_272b88_BD.jpg" width="10" height="10"></td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
      <td><span class="Style13"><span class="Style8">[report;block=tr;footergrp=NomAgence]</span> </span></td>
      <td>&nbsp;</td>
    </tr>
  </table>
  <p>&nbsp;</p>
</div>
</body>


J'ai un soucis avec le code suivant, le css n'est pas prit en compte pour le tableau du milieu. De même si j'essaye de mettre une bordure .

Est-ce que quelqu'un a une idée?
By: Skrol29
Date: 2006-11-20
Time: 11:50

Re: Grouping blocks && CSS

Salut,

Les balises <link> doivent être placées à l'intérieur de balises <head>.
Mais surtout tu as défini des sections de bloc qui ne sont pas contigües. TBS va supprimer systématiquement tout le code HTML qui se trouvent entre deux section te ton bloc "report" (c'est un comportement logique de TBS rappelé dans une des règles d'or). C'est probablement ça qui génère du code inattendus.

Un autre commentaire : sur le tableau du milieu tu as écrit :
<tr>
  [report.LibStatut;block=tr;headergrp=LibStatut]
  ...
  [report.Qte;block=tr;headergrp=Qte]
</tr>
mais il faut voir que sur le champ [report.Qte;...] les paramètres "block" et "headergrp" sont ignorés car le bloc a déjà été défini par la balise précédente [report.LibStatut;...] et que ce bloc englobe les deux balises.