html TD未正确调整[关闭]

cgvd09ve  于 2022-12-09  发布在  其他
关注(0)|答案(1)|浏览(123)

Closed. This question needs details or clarity . It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post .

Closed 6 hours ago.
Improve this question
<tr> <td>2.</td> <td colspan="3">Susi Handayani Jl. Kebangsaan No.225 300.000</td> </tr> how to merge two td to be inside one Td, But its not sticking Together, merged but I want the word to not stick together beside, make some space from the deleted td to be the same collum as above
I tried align but it didn't Work, I've also tried dividing the tr and tried removing td for one paragraph and it still sticks with the second paragraph(td),what i'd expect is the td not to stick together but to align the text above the text that i've make

thtygnil

thtygnil1#

使用COLSPAN的示例

<html>
<head>
    <style>     
    </style>
</head>
<body>
    <table style="border: 1px solid">
        <tr>
            <td style="border: 1px solid">Col 1</td>
            <td style="border: 1px solid">Col 2</td>
        </tr>
        <tr>
            <td style="border: 1px solid" colspan="2">Merged Col</td>
        </tr>
    </table>
</body>
</html>

相关问题