In HTML5 그것은 단지 aside
것으로 정의되어 는 "관련 콘텐츠와 관련이 있습니다. aside
요소 "입니다.
In HTML 5.1 (CR) 정의 became more specific, 지금 aside
는 "양육 내용을 절편의 내용과 관련"라고 말하는 것처럼. 새로운 정의는 다음
상기 aside
요소가 관련되어있는 요소 부 안에 있어야한다. main
요소는 이 아니며, , section
, body
, figure
등과 같은 요소가 있습니다. 요소입니다. 물론 aside
을 main
에 넣을 수는 있지만 가장 가까운 섹션 요소 인 부모 main
과 관련됩니다.
<body>
<main></main>
<aside><!-- related to the body --></aside>
</body>
<body>
<main><aside><!-- related to the body --></aside></main>
</body>
예 몇 가지 사례를 보여줍니다 :이 두 가지 예에서 (aside
에 대한) 어떤 의미 차이가 없음을 의미
는
<body>
<main>
<article>
<aside><!-- related to the article --></aside>
<section>
<aside><!-- related to the section --></aside>
<blockquote>
<aside><!-- related to the blockquote (not to the section!) --></aside>
</blockquote>
<div>
<aside><!-- related to the section (not to the div!) --></aside>
</div>
</section>
</article>
<aside><!-- related to the body (not to the main!) --></aside>
</main>
<aside>
<!-- related to the body -->
<aside><!-- related to the (parent) aside --></aside>
</aside>
<nav>
<aside><!-- related to the nav --></aside>
</nav>
<footer>
<aside><!-- related to the body (not to the footer!) --></aside>
</footer>
</body>
"를 묻는 있습니다 SEO 영향 "은 스택 오버플로에서 벗어난 주제입니다. 이러한 질문은 [webmasters.se]에서 확인할 수 있습니다. – unor
감사합니다. 감사합니다! 나는 미래의 질문을 위해 이것을 내 마음 속에 간직 할 것이다. –