css - Boostrap 3 - pull navigation to bottom -


i'm trying

enter image description here

using bootstrap3

but have problem simple navigation. need place them @ bottom of column.

check code plz : http://www.bootply.com/ly3p6gap1p

        <div class="row">             <div class="col-md-5 col-md-offset-1" style="display: table-cell;">                 <h2 style="text-align: center;">some text</h2>             </div>              <div class="col-md-6" style="display: table-cell; vertical-align: bottom;">                 <ul class="nav nav-pills">                     <li><a hre="#">option1</a></li>                     <li><a hre="#">option2</a></li>                 </ul>             </div>         </div> 

i tried use : position relative/absolute, table, table-cell - nothing works :/

<div class="col-md-6" style="display: table-cell; vertical-align: bottom;">                 <ul class="nav nav-pills">                     <li><a hre="#">option1</a></li>                     <li><a hre="#">option2</a></li>                 </ul>             </div>   <div class="col-md-6" style="display: table-cell; vertical-align: bottom; position:absolute; right:0; bottom:20px"> 

Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -