Guys, is it bad to have nested div's. On my page at the moment i have this:
<div class="heading">
<h3> MY HEADING! </h3>
</div>
<div class="content">
<div class="left">
<div class="nav">
<h3> Home </h3>
<h3> Contact </h3>
</div>
<div class="main">
<h3> HELLO, this is main text </h3>
</div>
</div>
A friend of mine said its bad to have nested div's and that you should only ever have one open at a time. I cant see why it would be bad to have nested div's.
Anyone ?