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

74

如果您使用的是 bootstrap 3.0,只需在此处添加答案。在 bootstrap 3.0 中,被row-fluid替换为(full changed log here )rowspancol-md

所以 Eduardo Grajeda 的回答变成了

<div class="modal-body row">
  <div class="col-md-6">
    <!-- Your first column here -->
  </div>
  <div class="col-md-6">
    <!-- Your second column here -->
  </div>
</div>
于 2013-10-27T06:13:23.353 回答
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解决方案,如果您想要更多引导程序,请查看下面的答案。


您可以使用一点 css 将模态体分成两部分,就像您进行两列的页面布局一样简单。

...
<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 回答