- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 5 个 div 元素(这里以简化的方式)。我如何设置 css 来制作一个 2 列布局,前 2 个 div 在右边,其余 div 在左边,如图所示(如果需要,每个 div 元素可以用不同的类或 ID 标识)?右侧或左侧的 div 数量可以固定并提前知道,而不是动态飞行。两列可能有不同的高度,但它们需要在顶部对齐(即 div3 和 div1 从相同的垂直位置开始)。理想情况下,我不想在每个 div 元素或左列或右列上设置固定高度。
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
最佳答案
1) 在容器上设置display:flex
2) 使用 flex-direction: column;
将 flex 容器的主轴设置为 block 轴(参见 flex-direction )
3) 使用 flex-wrap: wrap-reverse;
切换换行方向(参见 flex-wrap )
注意:这只有在容器具有固定高度时才能正常工作。 (感谢@Paulie_D)
演示:
.wpr {
width: 30vw;
height: 30vw;
border: 1px solid;
display: flex;
flex-direction: column;
flex-wrap: wrap-reverse;
justify-content: space-between;
}
.wpr div {
width: 45%;
height: 45%;
border: 1px solid;
margin: 1% 1% 1% 6%;
}
.wpr div:nth-child(n+3) {
height: 30%;
}
<div class="wpr">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
1) wrapper 可能没有固定的高度
2)右边div的个数可以固定(比如2个)
我们可以通过 float (和清除)前 2 个 div 来实现这个
.wpr {
border: 1px solid;
width: 50vw;
padding: 1em;
display: flow-root; /* create new block formatting context */
/* Note: if ie/edge support is required use overflow: hidden
instead of display: flow-root */
}
.wpr div {
color: green;
border: 1px solid;
margin: 0.3em;
padding: 1em;
width: 35%;
}
.wpr div:nth-child(-n + 2) {
color: red;
float: right;
clear: right;
}
<div class="wpr">
<div>1 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard </div>
<div>2 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 </div>
<div>3 Lorem Ipsum is simply dummy when an unknown printer took a g </div>
<div>4 Lorem Ipsum is simply dummy text of the printing </div>
<div>5 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem </div>
</div>
关于css - 如何在 2 列布局中先填充右列,然后再填充左列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59478263/
我有本地更改和远程更改。 有人告诉我必须先推,再 pull 。这背后有什么原因吗? 最佳答案 那个人错了:正确的模型是pull-before-you-push,而不是相反。 当您pull时,git 将
我正在使用最新版本的 Flat UI Pro 1.3.2 ( http://designmodo.com/flat/ ),jQuery 插件 flatui-radiocheck v0.1.0 和 iO
我是一名优秀的程序员,十分优秀!