html - List in an auto height div -


i'm building website , i'm not experieced. have boxes different content (text, table , list). every box has padding of 40px , automatic height. on text 1 , table 1 it's working perfectly. list has problems:

http://abload.de/img/status64u3x.jpg

what doing wrong? want bottom edge of information box in same vertical position edge of edge of features box. since website have lot of different content different heights same layout kind of responsible solution ould awesome. therea css way it?

this how want be:

http://abload.de/img/howiwantithpuz9.jpg

also here code:

 <div id="maincontainer">  <div class="boxseperator text">   <p>     <span class="gross">  blender</span>   </div>   <div class="boxmenu">    <div class="boxcontainer"><a href="inspirations.html">inspirations</a>        </div>     <div class="boxcontainer"><a href="programs.html">programs</a></div>     <div class="boxcontainer"><a href="tutorials.html">tutorials</a></div>     <div class="boxcontainer"><a href="articles.html">articles</a></div>  </div>   <div class="description">    <div class="boxtitle">      text content  </div>    <div class="information">    <div class="boxtitle">   <p class="unterpunkt left">information</p>  </div>   <div class="boxtext"><img src="blender.png"/>   <table>        table content   </table>   </div>  </div>   <div class="features">    <div class="boxtitle">   <p class="unterpunkt left">features</p>  </div>   <!--features-->    <ul>      li content   </ul>  </div> 

and css list box:

.features {  width:55%;  margin-right:1%;  float:left;  margin-top:50px;  }  .features ul {  padding:40px;  background-color:#fff;  width:100%;  height:100%;  box-sizing: border-box;  }  .features li {  color:#555;  float:left;  width:49%;  height:40px;  text-align:center;  padding-top:12px;  margin-right:2px;   box-sizing: border-box;  border:1px solid #888;  } 

hopefullyi did nothing wrong in post? sorry messy code. appreciate every comment!


Comments

Popular posts from this blog

python - TypeError: start must be a integer -

c# - DevExpress RepositoryItemComboBox BackColor property ignored -

django - Creating multiple model instances in DRF3 -