Skip to content Skip to sidebar Skip to footer

What Is Outer Div In Css?

what is outer div? whats the use? give me one

Solution 1:

An outer div is a div that wraps some other HTML elements. Like this:

<div>
    <label for="foo">Foo</label>
    <input type="text" name="foo" id="foo" />
</div>

Solution 2:

Outer Div is a <DIV> which surrounds your actual html control.


Post a Comment for "What Is Outer Div In Css?"