H5语义标签现实案例-
页面布局是基于html5元素的。所以在开端动手以前先熟知一下HTML5元素,然后检查它的语义可否适合你的布局很重要。
The HTML5 Structure
有一点很重要,当编写HTML5代码的时候,不要简略地把标签用html5中的
上依然是一个很不错的选中。比方wrapper或者container div
其中一个新的可以用来替代传统的div元素的标签是
的
最开端的时候我运用
在div元素内部,每一篇博客都包裹在它本人的article元素里面。
在一系列博客的下方,有一对分页链接。平常分页链接的重要性并反面
对等。但是本次这个博客布局还是把分页链接作为一个主导航处置。
在元素被修订以前,语义上并没有一个专门的元素作为侧边栏。不外,此刻可以安心地运用aside元素儿而不消担忧语法上的题目。
本示例中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; }
信赖看了这些案例你已经把握了办法,更多出色请关注 百分百源码网 其它相干文章!
相干浏览:
H5怎么做出拖拽结果
如何运用H5调取摄像头
对于老版本的阅读器不兼容H5和C3的处置办法
以上就是H5语义标签现实案例的细致内容,更多请关注 百分百源码网 其它相干文章!