この問題はこの問題に起因しています。 Dynamic width of a bootstrap 3 button to stay in col-md-* with long label on buttonbootstrapドロップダウンアイテムリストをclass = "well"の外側に表示する方法
これは問題の例です。これを解決するために
http://codepen.io/anon/pen/ORJagG
HTML
<div class="container-fluid">
<div class="row">
<div class="col-md-1">
<div class="well well-lg">
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle hideOverflow" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
This is some really really really really really really test really really really long text<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">some button with really long text</a></li>
<li><a href="#">some button with really long text</a></li>
<li><a href="#">some button with really long text</a></li>
<li><a href="#">some button with really long text</a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-1">
<div class="well">
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle hideOverflow" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
This is some really really really really really really test really really really long text<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">Should work like this but in the well...</a></li>
<li><a href="#">some button with really long text</a></li>
<li><a href="#">some button with really long text</a></li>
<li><a href="#">some button with really long text</a></li>
</ul>
</div>
</div>
</div>
</div>
.hideOverflow
{
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
width:100%;
display:block;
}
.btn-group{
display:block;
}
.well-lg{
overflow:hidden;
}
codepen.io/anon/pen/BLaGVBは、あなたが最初の要素が第二のように示したことにしたい。ここでは
は、ペンですか?ドロップダウンが自分自身を表示できるようにしますか? –私はあなたを正しく理解していれば、私はドロップダウンを「自分自身を示す」ことを望んでいます。最初のボックスの情報、ドロップダウン情報はclass = "well"内に表示されます。私はそれを右の2番目のドロップダウンボックスのように表示します。基本的には、ドロップダウンボックスの内容がウェルの上に表示されます。うまくいけば、マクセセンス。 –
'.well'の' min-height'をオプションに調整していますか?このペンのように:http://codepen.io/anon/pen/BLaGVB。オーバーフローを取り除き、最小高さを上げましたが、それがあなたのために起こっているかどうかは分かりません。 – wmeade