Twitter bootstrap 在引导模式中放置列

Twitter bootstrap 在引导模式中放置列,twitter-bootstrap,modal-dialog,twitter-bootstrap-3,Twitter Bootstrap,Modal Dialog,Twitter Bootstrap 3,我试图让一个引导模型中有多个列,但是它似乎无法处理我的内容,而不是垂直显示在列中。我的代码在这里: <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-con

我试图让一个引导模型中有多个列,但是它似乎无法处理我的内容,而不是垂直显示在列中。我的代码在这里:

<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog modal-lg">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
                <h4 class="modal-title" id="myModalLabel">Modal</h4>
            </div>
            <div class="modal-body">
                <div class="row">
                    <div class="row-md-6">
                        Left
                    </div>
                    <div class="row-md-6">
                        Right
                    </div>
                </div>

            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
                <button type="button" class="btn btn-primary">Save changes</button>
            </div>
        </div>
    </div>
</div>

&时代;
情态动词
左边
赖特
接近
保存更改

我发现了一些解决Bootstrap 2问题的方法,但它们不适用于Bootstrap 3。我还尝试将
行md-6
更改为
sm
xs
等,但没有成功。是否可以在引导程序3中执行此操作?列对我来说是最理想的,但是我应该避免所有列一起使用吗

引导程序中没有
行md-*
,但是
列md-*
应该可以工作

    <div class="modal-body">
          <div class="row">
            <div class="col-md-6">
              Left
            </div>
            <div class="col-md-6">
              Right
            </div>
          </div>
    </div>

左边
赖特

arghh!我是个白痴!谢谢,哈哈,我觉得让另一个人查看代码总是很好的,因为你总是会错过一些东西。即使我为我的模型编写了这个基本代码,我也会让两列垂直对齐,而不是水平对齐。这有什么共同的原因吗?