Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
10698 Visualizações

Hello, I try to underline a "font" tag using the "u" tag like the following code:

<section>
    <para style="P16">[[ repeatIn(visite.ordonance,'ordonance') ]]</para>
    <para style="P17" leftIndent="25" bulletIndent="0">
  <bullet><seq id="L1"/>)</bullet>
        <font face="Helvetica" size="9.0"><u>[[ ordonance.medicament.name ]]</u></font>
        .
        .
        .
      </para>
    </section>

but it give me bad result:

1)) [<u>[ ordonance.medicament.name ]</u>][ ordonance.medicament.name ]]
2cp *1/j pendant 4 mois .
Avatar
Cancelar

It's a real limitation in rml format. The "u" tag doesn't work properly with "font" tag.

Autor

OK, thank you.

Melhor resposta

Try enclosing your underlined text within a para tag

<para><u> [ ordonance.medicament.name ] </u></para>
Avatar
Cancelar