この記事では、HTML の div タグについて説明します。 HTML には、他の多くの HTML タグとコンテンツのグループに使用される 2 つの重要なタグがあります。1 つは
構文:
さまざまな HTML タグには、次のような開始タグと終了タグがあります。
div タグは
<div> Content of Div tag in HTML </div>
必要なデータまたはコンテンツのセクションを作成するには、コンテナ内で複数の div タグが使用されます。例: ヘッダー、フッター、ナビゲーション バー、テーブル、画像、テキストなど。CSS を使用してさまざまな div タグをデザインし、JavaScript を使用して簡単に条件を適用できます。
div タグは、さまざまな HTML タグとテキストをまとめて保持できます。
div タグを使用した例と div タグを使用しない例を確認できます。
コード:
<html> <head> <title>how to work div</title> <style type=text/css> .one{ background-color:orange; } .two{ background-color:yellow; } </style> </head> <body> <div class="one" > <h1> Content1 of div tag in Html </h1> <p> Div tag is used for group many HTML tag like table, list, paragraph in web page. Mostly div tag used in empty web page to partition or make section for content or HTML tags. </p> </div> <div class="two"> <h1> Content2 of div tag in Html </h1> <p> To make section of required data or content multiple div tags are used in container. Example: header, footer, navigation bar, table, images, texts etc. </p> </div> </body> </html>
出力:
説明:
コード:
<html> <head> <title>how to work div</title> <style type=text/css> p{ background-color:orange; } h1{ background-color:yellow; } </style> </head> <body> <h1> Content1 of div tag in Html </h1> <p> Div tag is used for a group many HTML tags like table, list, a paragraph on a web page. Mostly div tag used in empty web page to partition or make section for content or HTML tags. </p> <h1> Content2 of div tag in Html </h1> <p> To make section of required data or content multiple div tags are used in container. Example: header, footer, navigation bar, table, images, texts etc.</p> </body> </html>
出力:
説明:
以下は div タグの用途とニーズです:
言及されている例を以下に示します:
この例は、クラスを含む div タグです。たとえば、左派、中位派、右派です。 divは縦に入るコンテナです。ただし、1 つのセクションに異なる div を右、左、または中央として配置できます。これはコンテンツの位置管理に役立ちます。
コード:
<html> <head> <title> Example1 </title> <style type=text/css> .leftdiv { float: left; background-color:blue; } .middlediv { float: left; background-color:green; } .rightdiv { float: left; background-color:black; } div{ padding : 1%; color: white; background-color:grey; width: 28%; border: 1px solid black; } </style> </head> <body> <div class="leftdiv"> <h2> Left Side </h2> <p>Div tag is used for group many HTML tag like table, list, paragraph in web page. Mostly div tag used for a web page to partition or make a section for content or HTML tags. To make a particular design for some special content div tag is useful because it does not affect the div layout and any CSS design. </p> </div> <div class="middlediv"> <h2> Middle Side </h2> <p>Div tag is used for group many HTML tag like table, list, paragraph in web page. Mostly div tag used in empty web page to partition or make section for content or HTML tags. To make particular design for some special content div tag is useful because it is does not affect on the div layout and any CSS design. </p> </div> <div class="rightdiv"> <h2> Right Side </h2> <p>Div tag is used for group many HTML tag like table, list, paragraph in web page. Mostly div tag used for a web page to partition or make a section for content or HTML tags. To make particular design for some special content div tag is useful because it is does not affect on the div layout and any CSS design. </p> </p> </div> </body> </html>
出力:
テーブルの div タグ。
この例では、テーブルに div タグを使用しました。時々テーブルのレイアウトが変更されることがありますが、div タグに配置されたテーブルはレイアウトに影響しません。
コード:
<html> <head> <title> Example2 </title> <style type=text/css> div{ color:white; background-color:grey; border:solid black; } tr, td{ border: 1px solid grey; padding-top: 10px; padding-bottom: 10px; } th { padding-top: 10px; padding-bottom: 10px; text-align: left; } </style> </head> <body> <div> <h2> Student Information </h2> <table> <tr> <th>student name</th> <th>specialisation</th> <th>city</th> </tr> <tr> <td>vishu</td> <td>computer and IT </td> <td>kolkatta</td> </tr> <tr> <td>john</td> <td> graphics design</td> <td> delhi</td> </tr> <tr> <td>nagma</td> <td> mechatronics</td> <td>nagpur</td> </tr> <tr> <td>erfan </td> <td>animation video </td> <td>mumbai</td> </tr> <tr> <td> swadut </td> <td> electronics</td> <td> pune</td> </tr> <tr> <td> manasi </td> <td> CS </td> <td> pune</td> </tr> </table> </div> </body> </html>
出力:
スタイルを使用した div の例。
これは CSS スタイルを使用する簡単な例です。
コード:
<html> <head> <title> Example3 </title> <style> div{ height:300px; width:500px; color:white; border:1px solid; background-color:grey; } </style> </head> <body> <center> <div> <caption> <h2> div tags in HTML</h3> </caption> <h3> Div tag is division tag used for group many HTML tag like table, list, paragraph in web page. </h3> </div> </center> </body> </html>
出力:
divタグはWebページ上にパーティションを作るための分割タグです。これは、HTML タグとコンテンツを含む 1 つの空のコンテナーです。 div タグを使用すると、Web アプリケーションはすっきり、クリーンで魅力的に見えます。 Web アプリケーションはユーザーと開発者にとって理解しやすくなっています。
以上がHTMLのdivタグの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。