Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
10709 มุมมอง

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 .
อวตาร
ละทิ้ง

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

ผู้เขียน

OK, thank you.

คำตอบที่ดีที่สุด

Try enclosing your underlined text within a para tag

<para><u> [ ordonance.medicament.name ] </u></para>
อวตาร
ละทิ้ง