Align a list and push text to the bottom - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Text

Description

Align a list and push text to the bottom

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
.table {<!--from  w ww  .j a  v a2s  . c om-->
   display:table;
   width:100%;
   table-layout:fixed;
}

.table>ul {
   display:table-row;
}

.table>ul>li {
   display:table-cell;
}

.thead li {
   vertical-align:bottom;
   border-bottom:6px solid Chartreuse;
}
</style> 
 </head> 
 <body> 
  <div class="table"> 
   <ul class="thead"> 
    <li>my</li> 
    <li> my <br> my </li> 
    <li>my</li> 
   </ul> 
   <ul> 
    <li>Mae llawer o bethau gwych cymaint yn mynd ymlaen yr haf hwn a, beth bynnag yw eich cynlluniau, nawr yw'r amser i fynd i'r afael a eich gwariant.</li> 
    <li>2</li> 
    <li> 3 <br> Mae llawer o bethau gwych cymaint yn mynd ymlaen yr haf hwn a, beth bynnag yw eich cynlluniau, nawr yw'r amser i fynd i'r afael a eich gwariant. </li> 
   </ul> 
  </div>  
 </body>
</html>

Related Tutorials