Twitter Bootstrap を使用して小さなサイドバーを作成しようとしています。
段落テキストを自由に折り返すことができるようにしたいのですが、ボタンは常に右側に配置したいと考えています。ただし、ブラウザのサイズを全画面表示から縮小して幅を小さくすると、垂直ボタン グループが次の行にドロップダウンし、while ウィンドウの幅を占有します。醜い。これを変更するにはどうすればよいですか?
基本的に、私は次のようなコードを見ています:
<div class="container">
<div class="row" style="margin-top: 10px;">
<div class="span9 citation-text">
<p class="citation-text">Here is a ton of text that is supposed to be a citation
but I'm hoping it'll wrap that's why it's not a citation. And yet it doesn't wrap
so it looks like I'll have to keep writing and writing until it does.</p>
</div>
<div class="span3 vertical-btn-group citation-options">
<input type="button" class="btn btn-small btn-block btn-info citation-edit"
value="Edit" /> <input type="button" class=
"btn btn-small btn-block btn-danger citation-remove" value="Remove" />
<input type="button" class=
"btn btn-small btn-block btn-warning citation-highlight" value="Highlight" />
</div>
</div>
</div>
JSFiddleへのリンクは次のとおりです。
サイズ変更を試してみると、私が話していることがわかります。