Html'yi MS word'e dönüştürürken tablo satırının alt kenarlığı görünmez

0

Soru

Aşağıdaki yaklaşımı kullanarak bazı HTML içeriğini MS word'e dönüştürmeye çalışıyorum ancak tablo satırlarına(kenarlık altı gibi) ayarlamaya çalıştığım stillerden bazıları dönüştürülen word belgesinde hiç görünmüyor. Birisi bana yardım edebilir mi?

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

Ayarlamayı bile denedim style="mso-border-bottom-alt: solid #AFAFAF 2pt;" o da işe yaramadı. Benim gereksinimim, her satır için alt kenarlığa sahip olmam gerektiği konusunda çok özel.

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

En iyi cevabı

0

Azu tarafından belirtildiği gibi, border-bottom'u <td> yerine <tr> etiketler hile ile birlikte yaptı cellspacing="0" üzerinde <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

Diğer dillerde

Bu sayfa diğer dillerde

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