请教html5 section 与 articel
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请教html5 section 与 articel相关的知识,希望对你有一定的参考价值。
我在网上看了很多关于介绍 section 与 articel 的介绍,说法不一,搞得快崩溃了。请教各位大神,以下结构是否正确?section和 articel 是不是弄反了?有哪些错误? 如果您也不确认就不要误导大家哦。非常感谢!!<header>顶部</header><nav>导航</nav><section> <articel>
<h1>标题</h1>
<p>内容</p>
</articel>
<articel>
<h1>标题</h1>
<p>内容</p>
</articel></section>
<aside>边栏</aside><footer>底部</footer>
这种情况完全不需要用到article了,标题和部分说明的段落就用section。
article一般是定义独立于文档的其余部分内容,是完整性的一篇文章或者帖子。
Laravel @section/endsection 与 @section/show, @yield 的区别
base layout 中需要使用
@section("section_name") 区块链是什么? @show
继承的 blade 中需要使用
@section("section_name") 区块链的定义 @endsection
其会覆盖父模板中的内容。
如果需要基于原 layout section 附加内容
@section("section_name") @parent <p>区块链是xxx</p> @endsection
@yield 类似于 @section/show 的用法,但是其继承者不能使用 @parent。
以上是关于请教html5 section 与 articel的主要内容,如果未能解决你的问题,请参考以下文章