Struggling with CSS challenges is not uncommon on the vast landscape of the internet. One particular hurdle revolves around making purple and green divs expand to fill their remaining space, lining up perfectly with the yellow twitter feed:
http://example.com/csschallenge
The Structure:
<div id="main">
<div id="primary" class="home">
...
(HTML structure details continue)
...
</div>
</div>
The Styling:
.home #main-content {
margin-top: 23px;
...
(CSS styling details continue)
...
}
/* Home Info */
.home #info {
width: 270px;
padding-right: 30px;
...
}
/* Home Twitter */
.home #twitter {
padding-left: 10px;
width: 290px;
background: yellow;
}
/* Home Col3 */
.home #col3 {
background: green;
}
/* Implementing 960.gs framework */
Your assistance would be greatly appreciated.