<div>: The Content Division element
The <div>
HTML element is the generic container for flow content. It has no effect on the content or layout until styled in some way using CSS (e.g. styling is directly applied to it, or some kind of layout model like Flexbox is applied to its parent element).
Try it
As a "pure" container, the <div>
element does not inherently represent anything. Instead, it's used to group content so it can be easily styled using the class
or id
attributes, marking a section of a document as being written in a different language (using the lang
attribute), and so on.
Attributes
This element includes the global attributes.
Note: The align
attribute is obsolete; do not use it anymore. Instead, you should use CSS properties or techniques such as CSS Grid or CSS Flexbox to align and position <div>
elements on the page.
Usage notes
- The
<div>
element should be used only when no other semantic element (such as <article>
or <nav>
) is appropriate.
Accessibility concerns
The <div>
element has an implicit role of generic
, and not none. This may affect certain ARIA combination declarations that expect a direct descendant element with a certain role to function properly.
Examples
A simple example
<div>
<p>
Any kind of content here. Such as <p>, <table>. You name it!
</p>
</div>
Result
A styled example
This example creates a shadowed box by applying a style to the <div>
using CSS. Note the use of the class
attribute on the <div>
to apply the style named "shadowbox"
to the element.
HTML
<div class="shadowbox">
<p>Here's a very interesting note displayed in a lovely shadowed box.</p>
</div>
CSS
.shadowbox {
width: 15em;
border: 1px solid #333;
box-shadow: 8px 8px 5px #444;
padding: 8px 12px;
background-image: linear-gradient(180deg, #fff, #ddd 40%, #ccc);
}
Result
Technical summary
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
div |
1 |
12 |
1 |
Yes |
15 |
1 |
4.4 |
18 |
4 |
14 |
1 |
1.0 |
align |
1 |
12 |
1 |
Yes |
15 |
3 |
4.4 |
18 |
4 |
14 |
2 |
1.0 |
See also