HTML5 그림 태그는 무엇을 의미하나요? HTML5 그림 태그를 사용하는 방법을 알고 싶으십니까? 다음으로 HTML5 그림 태그의 정의와 사용법(예제 포함)을 주로 다룬 기사를 소개하겠습니다. .
HTML5 태그의 예:PRC를 설명하는 문서의 하위 섹션:
<figure> <h1>PRC</h1> <p>The People's Republic of China was born in 1949...</p> </figure>
팁: 요소 그룹에 캡션을 추가하려면
참고: Figure 요소에는 figcaption 요소가 하나만 배치될 수 있으며, 다른 요소는 무제한으로 배치될 수 있습니다.
HTML5 그림 태그의 역할:전에 매우 흥미로운 휠을 보았습니다. JavaScript 코드를 사용하지 않고 구현된 Hover 효과는 모두 HTML + CSS였습니다. 리뷰어와 함께 소스 코드를 살펴보았습니다. 도구를 사용하여 HTML의 기본 구조는 다음과 같습니다.
<figure class="effect-julia"> <img src="img/21.jpg" alt="img21"/> <figcaption> <h2>Passionate <span>Julia</span></h2> <div> <p>Julia dances in the deep dark</p> <p>She loves the smell of the ocean</p> <p>And dives into the morning light</p> </div> <a href="#">View more</a> </figcaption> </figure>
그리고 제가 구현한 소스 코드의 HTML 부분의 코드, 비교 예: <div class="hover-area area-Julia">
<img src="imgs/21.jpg" height="360" width="480">
<h3>PASSIONATE<strong>JULIA</strong></h3>
<ul>
<li>Julia dances in the deep dark.</li>
<li>She loves the smell of the ocean</li>
<li>And dives into the morning light</li>
</ul>
</div>