Tabel de frontieră de jos nu este visble atunci când conversia html pentru MS word

0

Problema

Eu sunt încercarea de a converti un conținut HTML în MS word folosind următoarea abordare, dar unele dintre stilurile care sunt încercarea de a stabili rândurile de tabel(cum ar fi de frontieră-fund) nu sunt deloc vizibile în convertite document word. Poate ma ajuta cineva aici?

<html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:w="urn:schemas-microsoft-com:office:word"
    xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
    xmlns="http://www.w3.org/TR/REC-html40">
    <body>
        <table>
            <tr style="border-bottom:2pt solid #AFAFAF">
               <td>One</td>
               <td>1</td>
            </tr>
            <tr style="border-bottom:2pt solid #AFAFAF">
               <td>One</td>
               <td>1</td>
             </tr>
        </table>
    </body>
</html>

Am încercat chiar stabilirea style="mso-border-bottom-alt: solid #AFAFAF 2pt;" care nu au de lucru, fie. Cerința mea este foarte specific, care ar fi trebuit frontieră de jos pentru fiecare rând.

css html html-table ms-word
2021-11-23 16:54:29
1

Cel mai bun răspuns

0

După cum sa menționat de către Azu, stabilirea de frontieră-fund să <td> în loc de <tr> tag-uri a făcut truc, împreună cu cellspacing="0" pe <table>.

<html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:w="urn:schemas-microsoft-com:office:word"
    xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
    xmlns="http://www.w3.org/TR/REC-html40">
    <body>
        <table width="100%" cellspacing="0">
            <tr>
               <td style="border-bottom:2pt solid #AFAFAF">One</td>
               <td style="border-bottom:2pt solid #AFAFAF">1</td>
            </tr>
            <tr>
               <td style="border-bottom:2pt solid #AFAFAF">One</td>
               <td  style="border-bottom:2pt solid #AFAFAF">1</td>
             </tr>
        </table>
    </body>
</html>
2021-11-23 17:30:21

În alte limbi

Această pagină este în alte limbi

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................