html - Expanding a parent div "row-fluid" horizontally to fit its floated children using Bootstrap -


many issues have been raised in same context. , ticket bootstrap framework.

indeed, want make panels in same line . thus, container div (row-fluid style class) should .

fiddle

i make attempt . but, note , panels not in same line

enter image description here

basing on this ticket , add this css :

.ui-level{        white-space: nowrap!important;     overflow: hidden!important;  } .myitem{           display: inline-block!important; } 

however , no news. :(

try following,

.ui-level{  display:inline-block;  } 

https://jsfiddle.net/isqware/wb5es0zc/2/


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -