Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/82.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/.htaccess/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在HTML中向表中插入段落时出现问题_Html_Html Table - Fatal编程技术网

在HTML中向表中插入段落时出现问题

在HTML中向表中插入段落时出现问题,html,html-table,Html,Html Table,实际上,我必须在表格标题下插入一段,就像下面给定的图片一样,但我不知道我无法理解如何插入。我做的每件事都是分发一张奇怪的桌子。我需要帮助 这是我写的HTML 斯坦福大学的研究人员发现了一种更快、更便宜的同位素分类方法 跳舞的机会:爱好者们飞往斯坦福参加舞蹈周末 艾曼纽尔·罗梅罗·拉西塞罗·理查德·扎尔(EMMANUEL ROMERO LA Cicero Richard Zare)的实验室教授理查德·扎尔(Richard Zare)。无论是夏天的草让你的脚发痒,还是红色的波尔多酒扑鼻而来,你

实际上,我必须在表格标题下插入一段,就像下面给定的图片一样,但我不知道我无法理解如何插入。我做的每件事都是分发一张奇怪的桌子。我需要帮助

这是我写的HTML


斯坦福大学的研究人员发现了一种更快、更便宜的同位素分类方法
跳舞的机会:爱好者们飞往斯坦福参加舞蹈周末
艾曼纽尔·罗梅罗·拉西塞罗·理查德·扎尔(EMMANUEL ROMERO LA Cicero Richard Zare)的实验室教授理查德·扎尔(Richard Zare)。无论是夏天的草让你的脚发痒,还是红色的波尔多酒扑鼻而来,你周围的几乎每个地方都带有特殊的化学标记。
这些被称为同位素的标记可以告诉科学家组成物质的分子来自何处,它们在何处旅行,以及沿途发生了什么。但进行这些分析既复杂又昂贵。现在,斯坦福的化学家们
开发了一种新方法,使同位素分析更容易,成本更低

按照您所写的内容,您有三个标题,因此每行(或等效项)需要3个单元格(
td
s)。以后,不要为间距添加额外的列,请使用CSS。(加上其他人在评论中所说的。)


斯坦福大学的研究人员发现了一种更快、更便宜的同位素分类方法
跳舞的机会:爱好者们飞往斯坦福参加舞蹈周末
艾曼纽尔·罗梅罗·拉西塞罗·理查德·扎尔(EMMANUEL ROMERO LA Cicero Richard Zare)的实验室教授理查德·扎尔(Richard Zare)。无论是夏天的草让你的脚发痒,还是红色的波尔多酒扑鼻而来,你周围的几乎每个地方都带有特殊的化学标记。
这些被称为同位素的标记可以告诉科学家组成物质的分子来自何处,它们在何处旅行,以及沿途发生了什么。但进行这些分析既复杂又昂贵。现在,斯坦福的化学家们
开发了一种新方法,使同位素分析更容易,成本更低

辛西娅·黑文洛杉矶第二部主要内容,诸如此类诸如此类诸如此类诸如此类诸如此类诸如此类诸如此类

HTML:

<table>
      <tr>
        <th>Stanford researchers find a quicker,<br>cheaper way to sort isotopes</th>
        <th>Chance to dance: Enthusiasts fly to <br>Stanford for dance weekend</th>
      </tr>
      <tr>
        <td>BY EMMANUEL ROMERO LA Cicero Richard Zare Professor Richard Zare in his lab. Whether it's the summer grass that tickles your feet or the red Bordeaux smacking on your palate, nearly every part of the world around you carries special chemical markers.
            These markers, called isotopes, can tell scientists where the molecules that compose a substance are from, where they traveled and what happened to them along the way. But doing these analyses has been complex and costly. Now, Stanford chemists
            have developed a new method to make isotopic analysis easier and less expensive.</td>
      <td>Your Content</td>
</tr>
    </table>
仅在一个HTML文件中:

<table style="border-collapse: collapse;width: 100%;border: 0;">
      <tr>
        <th style="text-align: left;padding: 16px;width:calc(100%/2);word-break:break-all;">Stanford researchers find a quicker,<br>cheaper way to sort isotopes</th>
        <th style="text-align: left;padding: 16px;width:calc(100%/2);word-break:break-all;">Chance to dance: Enthusiasts fly to <br>Stanford for dance weekend</th>
      </tr>
      <tr>
        <td style="text-align: left;padding: 16px;width:calc(100%/2);word-break:break-all;">BY EMMANUEL ROMERO LA Cicero Richard Zare Professor Richard Zare in his lab. Whether it's the summer grass that tickles your feet or the red Bordeaux smacking on your palate, nearly every part of the world around you carries special chemical markers.
            These markers, called isotopes, can tell scientists where the molecules that compose a substance are from, where they traveled and what happened to them along the way. But doing these analyses has been complex and costly. Now, Stanford chemists
            have developed a new method to make isotopic analysis easier and less expensive.</td>
      <td style="text-align: left;padding: 16px;width:calc(100%/2);word-break:break-all;">Your Content</td>
</tr>
    </table>

斯坦福大学的研究人员发现了一种更快、更便宜的同位素分类方法
跳舞的机会:爱好者们飞往斯坦福参加舞蹈周末
艾曼纽尔·罗梅罗·拉西塞罗·理查德·扎尔(EMMANUEL ROMERO LA Cicero Richard Zare)的实验室教授理查德·扎尔(Richard Zare)。无论是夏天的草让你的脚发痒,还是红色的波尔多酒扑鼻而来,你周围的几乎每个地方都带有特殊的化学标记。
这些被称为同位素的标记可以告诉科学家组成物质的分子来自何处,它们在何处旅行,以及沿途发生了什么。但进行这些分析既复杂又昂贵。现在,斯坦福的化学家们
开发了一种新方法,使同位素分析更容易,成本更低。
你的内容
仅在一个HTML文件中且不包含表格:

<div id="myDiv">
<div style="display:flex;flex-direction:row;justify-content:space-between;width:100%;" class="title">
<div style="padding:4px 16px;width:45%;" class="title-child">
<h3>Stanford researchers find a quicker,<br>cheaper way to sort isotopes</h3>
</div>
<div style="padding:4px 16px;width:45%;" class="title-child">
<h3>Chance to dance: Enthusiasts fly to <br>Stanford for dance weekend</h3>
</div>
</div>
<div style="display:flex;flex-direction:row;justify-content:space-between;width:100%;" class="content">
<div style="padding:4px 16px;width:45%;" class="title-content">
<p>BY EMMANUEL ROMERO LA Cicero Richard Zare Professor Richard Zare in his lab. Whether it's the summer grass that tickles your feet or the red Bordeaux smacking on your palate, nearly every part of the world around you carries special chemical markers.
            These markers, called isotopes, can tell scientists where the molecules that compose a substance are from, where they traveled and what happened to them along the way. But doing these analyses has been complex and costly. Now, Stanford chemists
            have developed a new method to make isotopic analysis easier and less expensive.
      <td>Your Content</p>
</div>
<div style="padding:4px 16px;width:45%;" class="title-content">
<p>Your Content</p>
</div>
</div>
</div>

斯坦福大学的研究人员发现了一种更快、更便宜的同位素分类方法
跳舞的机会:爱好者们飞往斯坦福参加舞蹈周末
艾曼纽尔·罗梅罗·拉西塞罗·理查德·扎尔(EMMANUEL ROMERO LA Cicero Richard Zare)的实验室教授理查德·扎尔(Richard Zare)。无论是夏天的草让你的脚发痒,还是红色的波尔多酒扑鼻而来,你周围的几乎每个地方都带有特殊的化学标记。
这些被称为同位素的标记可以告诉科学家组成物质的分子来自何处,它们在何处旅行,以及沿途发生了什么。但进行这些分析既复杂又昂贵。现在,斯坦福的化学家们
开发了一种新方法,使同位素分析更容易,成本更低。
你的内容

你的内容

就这样做吧

td {
    width:50%;
   }

不要使用表格进行布局,使用CSSPutting将我完全同意(+1)的评论放在一边,将
colspan='3'
添加到
以匹配3的宽度
。我被要求只使用HTML
td {
    width:50%;
   }