Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

bootstrap button: Stretch to fill its container space

I'm using bootstrap buttons, I would like to stretch the dropdown button in the middle to fill the rest of the toolbar space.

enter image description here

HTML (shortened code):

<div class="gallery-toolbar">     <ul style="padding:0">    <li><a>Back</a></li>     <li id="gallery_title">    <div class="btn-group">      <a class="btn btn-default"><?php echo $gallery->title ?></a>      <a class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></a>      <ul class="dropdown-menu">some php</ul>    </div></li>    <li><a>Slideshow</a></li> 

css:

.gallery-toolbar li { list-style:none; display: inline } .gallery-toolbar li:last-child { float:right } #gallery-title { ?? } 

I have tried the class "btn-group-jastified" but it didn't work at all.

any ideas?

like image 860
Murhaf Sousli Avatar asked Jun 15 '14 02:06

Murhaf Sousli


People also ask

How do I make Bootstrap button longer?

You can very easily change button size by adding btn-lg or btn-sm class to it. These classes modify the button's padding and also the font size and the CSS border radius.

How do I make Bootstrap button smaller?

Use the . btn-sm class in Bootstrap to create a small button.


1 Answers

Have you tried btn-block?

<a class="btn btn-default btn-block"></a> 

And try width:100% on

<div class="btn-group" style="width:100%"> 
like image 158
Milad Avatar answered Sep 28 '22 06:09

Milad