我有这样的布局:
我想发生的是,我希望右侧的正方形/矩形具有最大程度地扩展高度的灵活性,但我希望底部的正方形始终在第一个正方形下方齐平,而不是看起来像在在第二个方框的末尾创建了第二行。
我试图在JSFiddle here上重新创建它,但是它并没有完全按照我的意愿出现。无论哪种方式,都希望它们能充分解释我要达到的目标。
Note that the solution must be responsive on mobile devices too.
最佳答案
尝试这个
html {
overflow-y: scroll;
}
html, body {
height: 100%;
}
body {
font-family: 'Source Sans Pro', sans-serif;
background: #F2F2F2;
font-size: 1.3em;
}
.post, .comments {
background: #fff;
border-radius: 3px;
box-shadow: 0px 1px 1px #aaa;
padding: 3em;
margin: 2em auto;
/* margin-top: 1em;*/
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<body>
<div class="container">
<div class="row">
<div class="col-xs-6">
<div class="post">box 1</div>
<div class="post">box 2</div>
</div>
<div class="post col-xs-6">
<div>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>
</div>
</div>
</div>
</body>
希望能帮助到你..
谢谢
关于html - 如何将这三个元素与Bootstrap类对齐?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26051060/