html - Twitter Bootstrap: overflow of btn-group -


i have bunch of buttons inside div fixed width , auto height. want contained buttons shift next line once overflow container div.

here's code:

<div class='btn-group' style='width:100px; height:auto;'>   <button class='btn'>hello</button>   <button class='btn'>hello</button>   <button class='btn'>hello</button>   <button class='btn'>hello</button>   <button class='btn'>hello</button>   <button class='btn'>hello</button>   <button class='btn'>hello</button> </div> 

the buttons out of group. doing <br /> helps i'd prefer if there more direct solution since inserting buttons programatically. thanks.

override whitespace property on .btn-group

.btn-group{     white-space: normal; } 

jsfiddle: http://jsfiddle.net/k9xcj/


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -