html – 是语义或结构标签

前端之家收集整理的这篇文章主要介绍了html – 是语义或结构标签前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
拿这两个标记
<div id="header">
  <img src="/img/logo.png" alt="Mylogo" />

  <ul id="misc-nav">
    <li>..</li>
  </ul>

  <header>
    <h1>Welcome to Bob's Website of Fantastical Conbobulations</h1>
    <p>The smell of invention awaits you...</p>
  </header>
</div>

<header>
  <img src="/img/logo.png" alt="Mylogo" />

  <ul id="misc-nav">
    <li>..</li>
  </ul>

  <h1>Welcome to Bob's Website of Fantastical Conbobulations</h1>
  <p>The smell of invention awaits you...</p>
</header>

我的例子可能不是完美的,但是我想知道标签的目的是为了内容的语义定义,还是CSS的块级结构定义?

这是我的理解from the spec itself,第一个例子是正确的解释,但我看到第二个被称为正确的方式.

你可以提供任何清晰度吗?

解决方法

两者都不错但是,“结构”vs“语义”究竟是什么意思?
原文链接:https://www.f2er.com/html/225181.html

猜你在找的HTML相关文章