콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
10782 화면

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>
아바타
취소