gpt4 book ai didi

html - 新线路上的最后一个 td?

转载 作者:太空狗 更新时间:2023-10-29 14:11:43 25 4
gpt4 key购买 nike

我为客户从word中转换了一些表格数据:

<table>
<tr>
<th><p>SPAGHETTI &ndash; Deeg voorgerechten</p></th>
</tr>
<tr>
<td>SPAGHETTI AL PESCATORE</td>
<td>&euro;11.50</td>
<td><p >Zeevruchten in speciale tomatensaus</p></td>
</tr>
<tr>
<td>SPAGHETTI ALLA MATRICIANA</td>
<td>&euro;9.25</td>
<td><p >Met spek, knoflook in tomatensaus</p></td>
</tr>
<tr>
<td>SPAGHETTI BOSCAIOLA</td>
<td>&euro;10.25
</td>
<td><p >Met ham, spek, knoflook in roomsaus</p></td>
</tr>
<table>

它是表格数据。它应该在表格中:)

在单词 doc 中,他将最后一个单元格(荷兰语描述)换行。我可以使用 colspan="2"将每个最后一个单元格正则表达式到一个新行,但这不是结构。我试过:

td:last-child {
display: block;
}

但是每个浏览器都会忽略它。有什么想法吗?

编辑:听起来有点含糊,不是吗?

我有:

cell 1.1                     cell 1.2                               cell 1.3
cell 2.1 cell 2.2 cell 2.3
cell 3.1 cell 3.2 cell 3.3

我要:

cell 1.1                     cell 1.2                      
cell 1.3
cell 2.1 cell 2.2
cell 2.3
cell 3.1 cell 3.2
cell 3.3

最佳答案

表格不是那样工作的。 <tr>表示一个新行,<td>在同一行。你永远不会(或者至少不应该)<td>来自同一个 <tr>在不同的线路上。

cell 1.1                     cell 1.2                      
cell 2.1
cell 3.1 cell 3.2
cell 4.1
cell 5.1 cell 5.2
cell 6.3

编辑:在不适合表格的情况下,您似乎出于某种原因挂断了使用表格的念头。我可以建议以下实现(未经测试,您应该了解我正在尝试做的事情的基础知识)吗?

.menu-item: {
display: block;
}

.price: {
float: right;
}

.description {
clear: both;
}
<h3>Spaghetti</h3>
<div class="menu-item">
<strong>Food name</strong>
<span class="price">10.00</span>
<span class="description">A great dish</span>
</div>

<div class="menu-item">
<strong>Food name</strong>
<span class="price">10.00</span>
<span class="description">A great dish</span>
</div>

<div class="menu-item">
<strong>Food name</strong>
<span class="price">10.00</span>
<span class="description">A great dish</span>
</div>

关于html - 新线路上的最后一个 td?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7851398/

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