Adjust tabs to have same height as the tallest tab in Materialize.css -


when using tabs in materialize css, each tab tall content.

info tab info tab

feedback tab feedback tab

what do make tabs tall tallest tab?

i know can set minimum height divs, interested know if can materialize helper or materialize class.

html:

<div class="container">     <div class="row card hoverable">         <div class="col s12">             <ul class="tabs">                 <li class="tab col s3"><a class="active" href="#test1">info</a></li>                 <li class="tab col s3"><a href="#test2">feedback</a></li>                 <li class="tab col s3 disabled"><a href="#test3">qa</a></li>             </ul>         </div>         <div id="test1" class="col s12">             <div class="row">                 <div class="col">                     <h5>location</h5>                     <p>lorem ipsum dolor sit amet</p>                     <p>consectetur adipiscing elit</p>                     <p>cras vestibulum</p>                 </div>                 <div class="col push-s1">                     <h5>available timings</h5>                     <p>mon: 8am - 9pm</p>                     <p>tue: 8am - 9pm</p>                     <p>thu: 8am - 9pm</p>                     <p>sat: 10am - 2pm</p>                 </div>             </div>             <div class="row">                 <div class="col">                     <strong>id:</strong> abbs1243xa                 </div>             </div>         </div>         <div id="test2" class="col s12">             <ul>                 <li>sorry, no feedback available @ time.</li>             </ul>         </div>         <div id="test3" class="col s12">test 3</div>     </div> </div> 

i have codepen here.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -