Divide div (table-cell) further

Stribor45,
If you’ll look at the html Paul is using above, you’ll see that it is comprised of classes rather than IDs’

Looking at your html from the link you gave we see this…

<div id="wrapper">
    <div id="one"></div>
    <div id="two"></div>
    <div id="three"></div>
</div>

That is what I was talking about in post #12 of your other thread.

You could be in for a pretty bumpy ride when it comes time to style the actual content inside those divs with all the weight and specificity the IDs’ add. :slight_smile:

2 Likes