html5 – 我应该使用,如果是的话,为什么以及如何使用?

前端之家收集整理的这篇文章主要介绍了html5 – 我应该使用,如果是的话,为什么以及如何使用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在尝试正确使用colgroup和col标签,但我没有得到它.我阅读了规范和所有这些,但我不明白它的目的或如何实现它.

有什么建议?

解决方法

在表元素中使用colgroup来帮助理解具有不规则标题的表中信息的复杂层次结构.

WAI有一个完整的信息页面,介绍如何处理这种情况:
Tables with irregular headers并了解col和colgroup的使用

To associate the first-level headers properly with all cells of both columns,the column structure needs to be defined at the beginning of the table. A <col> element identifies each column,beginning on the left. If a header spans two or more columns,use a <colgroup> element instead of that number of <col> elements,and the number of columns spanned is noted in the span attribute.

话虽这么说,这些元素的最佳用例是为样式列而不重复样式或类属性

<table>
  <colgroup>
    <col style="background-color:red">
    <col style="background-color:yellow">
    <col style="background-color:blue">
  </colgroup>
  <tr>
    <th>First</th>
    <th>Second</th>
    <th>Third</th>
  </tr>
  <tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
  </tr>
</table>
原文链接:https://www.f2er.com/html5/168080.html

猜你在找的HTML5相关文章