Geek Slack

Introduction to HTML
About Lesson


HTML Div Element


HTML Div Element

The <div> element is a versatile container element used in HTML. It is short for “division” and is used to group together sections of content or to apply styles to a section of content.

1. Basic Usage of <div>

The <div> element is a block-level element that can contain other block-level or inline elements.

Example:

This is a paragraph inside a div.

This is another paragraph inside the same div.

<div>
    <p>This is a paragraph inside a div.</p>
    <p>This is another paragraph inside the same div.</p>
</div>

2. Styling with <div>

The <div> element can be styled using CSS to create layout structures and apply visual designs.

Example:

This div has a border and padding.

<div style="border: 1px solid #333; padding: 10px;">
    <p>This div has a border and padding.</p>
</div>

3. Nested <div> Elements

You can nest <div> elements inside each other to create complex layouts.

Example:

This is a nested div.

<div style="border: 1px solid #333; padding: 10px;">
    <div style="border: 1px solid #666; padding: 10px;">
        <p>This is a nested div.</p>
    </div>
</div>

Conclusion

The <div> element is a powerful tool in HTML for creating structured and styled sections of content. By mastering its usage, you can build complex layouts and apply custom styles effectively.

Join the conversation