這次帶給大家H5語意標籤實際案例,怎麼使用H5的語意標籤?使用H5的語意標籤的注意事項有哪些,以下就是實戰案例,一起來看一下。
頁面佈局是基於html5元素的。所以在開始動手之前先熟悉一下HTML5元素,然後檢查它的語意是否適合你的佈局很重要。
The HTML5 Structure
有一點很重要,當寫HTML5程式碼的時候,不要簡單地把
上仍然是一個很不錯的選擇。例如wrapper或container div
其中一個新的可以用來取代傳統的div元素的標籤是
的
最開始的時候我使用
在div元素內部,每一篇部落格都包裹在它自己的article元素裡面。
在一系列部落格的下方,有一對分頁連結。通常分頁連結的重要性並不和
對等。但本次這個部落格佈局還是把分頁連結當作一個主導航處理。
在
本範例中aside元素中包含了若干個section元素。在側邊欄的底部有一個簡單的搜尋框。它可以讓我們接觸到HTML5表單的一些新功能。
其中的一個就是placeholder屬性
佈局最後以footer元素結束。本範例中footer元素需要放置在div容器的外部,這樣可以讓footer元素的寬度橫跨整個頁面。
header { margin: 0 0 98px 0; } header h1 { float: left; font-size: 36px; font-weight: normal; } header nav { float: right; text-align: right; padding: 6px 0 0 0; } header nav ul { list-style: none; } header nav li { float: left; font-size: 18px; width: 136px; margin: 0 0 0 20px; } header nav li:nth-child(1):before { content: "1. "; color: #a2a2a2; } header nav li:nth-child(2):before { content: "2. "; color: #a2a2a2; } header nav li:nth-child(3):before { content: "3. "; color: #a2a2a2; } header nav li:nth-child(4):before { content: "4. "; color: #a2a2a2; } header nav li:nth-child(5):before { content: "5. "; color: #a2a2a2; } #sidebar { width: 292px; float: left; padding: 4px 0 0 0; } #sidebar h3 { font-size: 18px; font-weight: normal; margin: 0 0 25px 0; } #sidebar ul { list-style: none; } #sidebar section { margin: 0 0 47px 0; } #sidebar #about a.more { display: block; text-align: right; } #sidebar #categories { width: 136px; float: left; margin: 0 20px 0 0; } #sidebar #social { width: 136px; float: left; } #footer-container { background: rgba(0,0,0,0.2); overflow: hidden; } footer { width: 916px; margin: 0 auto; padding: 10px 22px 50px 22px; } footer #credits { list-style: none; float: left; } footer #credits li { float: left; margin: 0 6px 0 0; } footer #credits li.wordpress a { display: block; width: 20px; height: 20px; background: url(images/credits.png) no-repeat 0 0; text-indent: -9999px; } footer #credits li.spoongraphics a { display: block; width: 25px; height: 20px; background: url(images/credits.png) no-repeat -30px 0; text-indent: -9999px; } footer #back-top { float: right; font-size: 12px; }
相信看了這些案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
相關閱讀:
以上是H5語意標籤實際案例的詳細內容。更多資訊請關注PHP中文網其他相關文章!