what is outer div in css? [closed]
what is outer div? whats the use? give me one
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>
Outer Div is a <DIV>
which surrounds your actual html control.
精彩评论