Having problems with css div height. I am using 1140 framework.
<div class="fourcol">
<div class="home-content">
<div class="onecol"></div>
<div class="elevencol last">
<h4>Title Title</h4>
<div class="onecol"></div>
<div class="threecol home-icon-1"></div>
<div class="eightcol last">
<p>Lorem ipsum data.......................</p>
</div>
</div>
</div>
Css code:
.home-content { border: 1px solid red; }
.home-icon-1 { min-height: 100px; background:url(../img/home_icon_1.jpg) no-repeat center left;}
I want round a border on home-content class but it show 1px height at all. How can i stretch it in accordance to <p>Lorem ipsum data.......................</p> height?
<div class="home-content">I am adding border to this, but it doesn't cover under-divs I mentioned in the mark up. – yahyaE Jun 2 '12 at 14:13overflow: auto– Robert Niestroj Jun 2 '12 at 14:47