Home > Article > Web Front-end > What is html div
In HTML, div is a block-level element that can define partitions or sections in the document. It can divide the document into independent and different parts. It can be used as a strict organizational tool and does not use Any format associated with it. Browsers usually place a line break before and after a div element, meaning its content automatically starts on a new line.
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
What is the div in html
DIV is the positioning technology in cascading style sheets, the full name is DIVision, which means division. Sometimes they are called layers. The DIV element is an element used to provide structure and background for block-level content within an HTML (an application under Standard Universal Markup Language) document.
Function: Define the partition or section (division/section) in the document.
If you use id or class to mark
Explanation:
Note: The
html div tag example
<html> <body> <h3>This is a header</h3> <p>This is a paragraph.</p> <div style="color:#FF0000"> <h3>This is a header</h3> <p>This is a paragraph.</p> </div> </body> </html>
For more programming-related knowledge, please visit: Programming Learning! !
The above is the detailed content of What is html div. For more information, please follow other related articles on the PHP Chinese website!