"."/> ".">

Maison  >  Article  >  interface Web  >  Comment fusionner des lignes en HTML5

Comment fusionner des lignes en HTML5

WBOY
WBOYoriginal
2021-12-21 11:47:025812parcourir

在html中,可以利用rowspan属性实现合并行的操作,rowspan属性用于定义单元格应该横跨的行数,也就是合并的行数,语法为“

”。

Comment fusionner des lignes en HTML5

本教程操作环境:windows10系统、HTML5版、Dell G3电脑。

html5如何合并行

在html中想要合并行,需要利用rowspan属性。

rowspan 属性定义单元格应该横跨的行数。语法如下:

其中number规定单元格应该横跨的行数。注意: rowspan="0" 告知浏览器使单元格横跨到表格组件中的最后一个行(thead、tbody 或 tfoot)。

示例如下:

<html>
<head> 
<meta charset="utf-8"> 
<title>123</title> 
</head>
<body>
<table border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
    <th>Savings for holiday!</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
    <td rowspan="2">$50</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
</body>
</html>

输出结果:

Comment fusionner des lignes en HTML5

推荐教程:《html视频教程

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn