Bootstrap Modal Dialog. Can the grid system be use

2019-01-24 01:40发布

I have a Bootstrap modal dialog for which I want to layout the various labels and inputs. I have tried using row/column classes but they do not appear to do anything. What are my options here?

Thanks,
Doug

7条回答
女痞
2楼-- · 2019-01-24 02:45

Just add the row class to your modal as per the code below and then you can divide up your modal as you wish:

<div class="modal-body row">
  <div class="col-md-8">
    <p>Column One content here ... </p>
  </div>
  <div class="col-md-4">
    <p>Column Two content here ... </p>
  </div>
</div>
查看更多
登录 后发表回答