Hi All, been a long time for me so hope everyone is well..
anyone able to offer any advice on this.
A while a go i created a website using a lot of divs, and got pretty lost in them after a while, so I started adding the class/id to the closing tag..
So what would be:
<div id="wrapper>
<h1> Welcome</h1>
<p>Lorem Ipsum Likes to party</p>
<div id="right">
<ul>
<li>Hooray for CSS</li>
<li>Boo to IE</li>
</ul>
</div>
<div class="content">
<p>CSS is wicked bad, yeahhh bouuuyyyyy</p>
<p>Just another random line</p
</div>
</div>
became:
<div id="wrapper>
<h1> Welcome</h1>
<p>Lorem Ipsum Likes to party</p>
<div id="right">
<ul>
<li>Hooray for CSS</li>
<li>Boo to IE</li>
</ul>
</div id="right">
<div class="content">
<p>CSS is wicked bad, yeahhh bouuuyyyyy</p>
<p>Just another random line</p
</div class="content">
</div id="wrapper">
Now I cant find any clear guide lines on this!!! I doubt its good practice but just wonder what people thought on it as it makes tracking the divs a lot easier.. well for me at least
