我想要内联块的行为,并在响应容器(%宽度)中浮动几个div,其中:
浮动效果:
1a上。它会有div左右对齐
1b中。当窗口宽度缩小时 - 左右div之间的空间也会缩小
内联块效应:
2a上。所有的div都在同一行
2B。当窗口宽度缩小时 - 它将隐藏div(通常从右侧开始)
示例:
当窗口小于div时:
2a上。想要的效果
2B。错误的效果
这是我到目前为止所得到的代码示例(仅模拟浮动效果(1)和效果在同一行(2b)但在缩小窗口宽度(3b)时缺少效果),{{3 }}:
Bundle bundle = this.getArguments();
String val = bundle.getString("someValue", "");
.item1 {background-color: red;}
.item2 {background-color: yellow;}
.item3 {background-color: blue;}
#container {
width: 95%;
height: 50px; /* not sure if is needed */
}
#container div {
display: inline-block; /* does nothing with floats */
width:100px;
height: 50px;
}
.left {float: left;}
.right {float: right;}
注意:
答案 0 :(得分:0)
你应该看一下bootstraps网格系统。这会节省你很多时间。 http://getbootstrap.com/2.3.2/scaffolding.html#gridSystem
答案 1 :(得分:0)
可能不完全是你想要的,但它接近了:
对容器使用flex,并隐藏第二行。
并使用flex-shrink,flex-basis,max-width和margin
.container {
width: 80%;
display: flex;
flex-wrap: wrap;
height: 100px;
margin-bottom: -100px;
border: solid 1px red;
overflow: hidden;
}
.container div {
height: 100px;
border: solid 1px;
}
.left {
flex: 200px 0 0;
background-color: lightgreen;
margin-right: auto;
}
.right {
flex: 100px 1 1;
background-color: yellow;
max-width: 200px;
}
.disappears {
flex: 200px 0 1;
background-color: papayawhip;
}

<div class="container">
<div class="left">left</div>
<div class="right">right</div>
<div class="disappears">dis</div>
<div class="disappears">dis</div>
</div>
&#13;
答案 2 :(得分:0)
您需要将UserTest
添加到overflow:hidden;
#container
答案 3 :(得分:0)
经过更多的研究和测试,我终于找到了一个解决方案,其中包含 demo :
.item1 {background-color: red;}
.item2 {background-color: yellow;}
.item3 {background-color: blue;}
#container {
width: 95%;
display: flex;
justify-content: space-between;
}
/* affects container_left and container_right divs */
#container > div {
display: flex;
}
/* affects items */
#container > div > div {
width: 100px;
min-width: 100px; /* to avoid shrinking in IE 11*/
height: 50px;
}
#container, #container > div {
/* reading from right to left (RTL)*/
/* flex-direction: row-reverse; */
}
&#13;
<div id="container">
<div class="container_left">
<div class="item1">item1</div>
</div>
<div class="container_right">
<div class="item2">item2</div>
<div class="item3">item3</div>
</div>
</div>
&#13;
注意: