Riga della tabella, bordo inferiore non è visibile durante la conversione da html a MS word

0

Domanda

Sto cercando di convertire il codice HTML contenuto in MS word utilizzando il seguente metodo, ma alcuni degli stili che sto cercando di impostare le righe della tabella(come border-bottom), non sono visibili nel documento convertito. Qualcuno può aiutarmi?

<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>

Ho anche provato impostazione style="mso-border-bottom-alt: solid #AFAFAF 2pt;" che non ha funzionato neanche. La mia richiesta è molto specifica che dovrei avere il bordo inferiore per ogni riga.

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

Migliore risposta

0

Come detto da Azu, l'impostazione di confine-fondo per <td> invece di <tr> tags fatto il trucco con cellspacing="0" su <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

In altre lingue

Questa pagina è in altre lingue

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