html5需遵循怎樣的6個設計原則?

來源:互聯網
上載者:User
本章將介紹html5需要遵循的6個設計原則,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所協助。

原則一:避免不必要的複雜性

html4

<!DOCTYPE html PUBLIC "-//W3C/DTD HTML 4.01//EN" " <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

html5

<!DOCTYPE html><meta charset="utf-8">

原則二:支援已有的內容

以下四段代碼,在xhtml中只有第一段是正確的;而在html5中,所有的都是正確的

<img src="foo" alt="bar" />  <p class="foo">Hello world</p>
<img src="foo" alt="bar">  <p class="foo">Hello world
<IMG SRC="foo" ALT="bar">  <P CLASS="foo">Hello world</P>
<img src=foo alt=bar>  <p class=foo>Hello world</p>

原則三:解決現實的問題

在html4中,即使兩個區塊層級元素元素有相同的連結地址,也必須分開寫,因為內嵌元素不能包含區塊層級元素

<h2><a href="/path/to/resource">Headline text</a></h2><p><a href="/path/to/resource">Paragraph text.</a></p>

而在html5中,由於使用了內容模型,<a>元素也可以包含區塊層級元素

<a href="/path/to/resource">      <h2>Headline text</h2>      <p>Paragraph text.</p>  </a>

原則四:求真務實

html5新增了多個元素,其中包括:section、article、aside和nav,它們代表了一種新的內容模型——給內容分區。以前人們一直都在用div來組織頁面中的內容,但與其他類似的元素一樣,div本身並沒有語義。但section、article、aside和nav實際上是在明確地告訴你——這一塊就像文檔中的另一個文檔一樣。位於這些元素中的任何內容,都可以擁有自己的概要、標題,自己的腳部。

原則五:平穩退化

瀏覽器在遇到不識別的type值時,會將type的值解釋為text

input type="number"input type="search"input type="range"input type="email"input type="date"input type="url"

原則六:終端使用者優先

一旦遇到衝突,終端使用者優先,其次是作者,其次是實現者,其次標準制定者,最後才是理論上的完滿。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.