gpt4 book ai didi

html - 表格到div问题

转载 作者:太空宇宙 更新时间:2023-11-04 15:24:46 24 4
gpt4 key购买 nike

如何将下面的代码翻译成使用三个 div 并且看起来一样?

 <table width="1050px">
<tr>
<td rowspan="2" width="80%"></td>
<td width="20%"><p>some text</p></td>
</tr>
<tr>
<td><p>some text</p></td>
</tr>
<table>

最佳答案

没有 rowspan,但是您可以通过以下方式获得相同的结果:

<div style="width: 1050px;">
<div style="width: 80%; float: left;">
<p>some text</p>
</div>
<div style="width: 20%; float: left;">
<p>some text</p>
</div>
<div style="width: 100%; clear: left;">
<p>some text</p>
</div>
</div>

See working example.

关于html - 表格到div问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3990796/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com