在本文中,我們將了解 HTML 中的 div 標籤。 HTML 有兩個重要的標籤,用於一組許多其他 HTML 標籤和內容,一個是
文法:
各種 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 是垂直放置的容器。但是我們可以在一個節中放置不同的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標籤是一個劃分標籤,用於在網頁上進行分區。這是一個包含 HTML 標籤和內容的空容器。使用 div 標籤的 Web 應用程式看起來整潔、乾淨且有吸引力。 Web 應用程式對於使用者和開發人員來說更容易理解。
以上是HTML 中的 div 標籤的詳細內容。更多資訊請關注PHP中文網其他相關文章!