Posted by mbstevens on 11/12/73 11:49
Jeremy Brown wrote:
> OK, I see the <div> tag referred to allot- What exactly does it do and what
> is its usage? Please forgive my tresspass...
It is a generic block element that is often overused ("divitis") by
people who forget that their other block elements can be styled with CSS
just as easily as a div. You often see things like
<div>
<ul>
<li>........
<ul>
</div>
with the div instead of the ul styled when
<ul>
<li>........
</ul>
would do.
[Back to original message]
|