20

ここに画像の説明を入力

私は次のhtmlを持っています

<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog"
aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-body">
        <table>
            <tbody>
                <tr>
                    <td>
                        <div class="span2 fileupload fileupload-new pull-left" data-provides="fileupload">
                            <div class="fileupload-preview thumbnail" style="width: 200px; height: 150px;"></div>
                            <div> <span class="btn btn-file"><span class="fileupload-new">Select image</span>
                                <span
                                class="fileupload-exists">Change</span>
                                    <input type="file" />
                                    </span> <a href="#" class="btn fileupload-exists" data-dismiss="fileupload">Remove</a>

                            </div>
                        </div>
                    </td>
                    <td>
                        <div class="progress">
                            <div class="bar" style="width: 60%;"></div>
                        </div>
                        <button class="btn btn-mini" type="button">Upload</button>
                    </td>
                </tr>
            </tbody>
        </table>
    </div>
    <div class="modal-footer">
        <button class="btn btn-primary" data-dismiss="modal" aria-hidden="true">Close</button>
    </div>

</div>
4

3 に答える 3

14

Bootstrap が提供する CSS を使用してこれを行うことができたことを追加したかっただけです。次のコードは私のために働いた:

<div class="modal-body row-fluid">
  <div class="span6">
    <!-- Your first column here -->
  </div>
  <div class="span6">
    <!-- Your second column here -->
  </div>
</div>
于 2013-06-10T00:49:42.523 に答える
11

編集:これは純粋な CSSソリューションにすぎません。よりブートストラップ的なものが必要な場合は、以下の回答を参照してください。


2 つの列のページ レイアウトを行うのと同じくらい簡単に、CSS を少し使用して、モーダル ボディを 2 つの部分に分割できます。

...
<div class="modal-body>
   <div class="first-column">
       <!-- Your first column here -->
   </div>
   <div class="second-column">
       <!-- Your second column here -->
   </div>
</div>
...

そしてCSS

.first-column {
  width: 40%;
  float: left;
}

.second-column {
  width: 40%;
  float: right;
}

モーダル内でグリッドシステムを使用する必要はありません。また、スパンで合わせようとすると、おそらく結果が悪化します。

于 2013-02-19T16:41:28.010 に答える