ホームページ >ウェブフロントエンド >htmlチュートリアル >HTML セクションとディビジョン
Div は、HTML ドキュメントの分割として定義されるタグです。主にブロック要素をグループ化するために使用されます。 HTML ページで使用するときは常に、CSS スタイル シートに使用されます。このセクションはタグでもあります。これは、HTML ドキュメントの各セグメントを記述します。つまり、HTML では、Web ページにはセクションと呼ばれるヘッダー、フッターなどが含まれます。あらゆる機能がこれに付属します。セクションの本文のいずれかには、章セクションが付属します。
以下は、HTML セクションと Div の上位 6 つの比較です:
次の点で、HTML セクションと Div の主な違いについて説明します。
以下の表は、HTML セクションと Div の比較をまとめたものです:
Html Section Tag | Html Div Tag |
The tag defines a section of documents like chapters, headers, footers and body sections. | The tag defines a separate division or sections of the documents. |
tag is use for html5 version. |
|
It is not a generic container and global attributes. | It is a generic container. |
When creating a section in html 5 version, the id should be a unique one, and the class should use it multiple times when it is needed. | When div tag, place any html elements within the tag and cannot use for inside the tag because the paragraph tag will be broken at any point in time. |
Here CSS is not necessary hence it is a structural element used to group together related elements. If. we want to use CSS styles in sections IE 9 browser and some other browsers supported previous IE versions not supported. | Applying CSS styles inside the div tag uses tag, which is used for within inline elements. All browsers will be supported hence no compatibility issue. |
Section tag containing article elements in html | Div tag contains all the elements where the tag should not force to do it. |
タグ内では使用できません。段落タグはいつでも壊れてしまうためです。
が含まれるすべての要素が含まれます。タグはそれを強制すべきではありません。
아래는 섹션 태그와 Div 태그의 예시입니다.
코드:
<html> <body> <section> <h1>Sample</h1> <p>WelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcomeWelcome</p> </section> <section> <h1>First</h1> <p>WelcometomydomainWelcometomydomainWelcometomydomainWelcometomydomainWelcometomydomainWelcometomydomainWelcometomydomainWelcometomydomainWelcometomydomainWelcometomydomainWelcometomydomain</p> </section> </body> </html>
출력:
위의 예는 태그를 사용하여 데이터를 단락 형식으로 표시합니다. 코드: 출력: 위의 예는 배경색과 같은 CSS 스타일이 있고 ,여기 태그는 위의 코드: 출력: 위의 예는 以上がHTML セクションとディビジョンの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。예시 #2 – Div 태그
<html>
<body>
<p>Sample.</p>
<div style="background-color:Green">
<h3>Welcome To My Domain</h3>
<p>Welcome To My Domain</p>
</div>
</body>
</html>
예 #3 – Div 태그
<html>
<head>
<style>
#s{
width:10px;
background: #green;
height:40px;
}
.s1{
width:90px;
font: 60.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
font-size:10px;
font-weight:bold;
}
</style>
</head>
<body>
<marquee><p>Sample.</p></marquee>
<div id="s">
<div class="s1">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">AboutUs</a></li>
<li><a href="#">ContactUs</a></li>
</ul>
</div><!--closing div class for "menu"-->
</div><!--closing div for "container"-->
</body>
</html>