- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
如果您运行以下代码段,您可以看到 height
flexbox
中的两行container
是不同的。有人可以解释一下吗?
如果您发表评论 A线 (= 从 height
项中删除显式 flexbox
)两行在 height
中变得相等.我不明白为什么?
Here是同一个片段的 JSfiddle,如果方便的话。
*{
color: blue;
font-size: 22px;
}
.box1 {
width: 50px;
background-color: black;
border: 1px solid blue;
}
.box2 {
width: 50px;
background-color: red;
border: 1px solid blue;
}
.box3 {
width: 50px;
height: 30px;/*Line A: comment this and both rows will have same height*/
background-color: yellow;
border: 1px solid blue;
}
.container {
display: flex;
width: 160px;
height: 500px;
border: 1px solid red;
align-items: stretch;
flex-wrap:wrap;
}
<div class="container">
<div class="box1">.box1</div>
<div class="box2">.box2</div>
<div class="box3">.box3</div>
<div class="box1">.box1</div>
<div class="box2">.box2</div>
</div>
flex-wrap: wrap
的任何详细解释.网站如
MDN和
CSS-tricks就说当
wrap
被应用的元素会有
width = flex-basis
当一个
row
元素完成,元素将移动到下一个 flexbox
row
.但是这些
row
的对齐方式是什么? s 内
flexbox
container
?
flex-direction: row
并且允许包装)如果元素占用多个
row
, 每个
row
将具有相同的高度(
= flexbox_container_height/row_count
)并且每个
row
充当
flexbox
container
.所以如果我申请一个属性
flex-items:center
,元素将在这些行中的每一行内居中。
最佳答案
这里的问题不是flex-wrap
或 align-items
或 align-content
(至少不是直接的)。
真正的问题是 box-sizing
.
重点:
free space !== length
box-sizing
属性适用于长度,包括
height
,
width
和
flex-basis
.
box-sizing
属性不适用于可用空间,因此被
align-items
忽略。 ,
flex-grow
,
justify-content
,
fr
以及管理可用空间的其他属性和功能。
box-sizing
box-sizing
属性有两个值:
content-box
(默认值)border-box
content-box
,您定义的任何长度都将不包括填充或边框。
border-box
、内边距和边框被计入您的长度计算中。
box-sizing
不提供
padding-box
或
margin-box
值。边距总是单独添加。
.container {
display: flex;
flex-wrap: wrap;
align-items: stretch; /* default setting */
width: 160px;
height: 500px;
border: 1px solid red;
}
box3
一会儿。这是定义高度为 30px 的元素。
.container {
display: flex;
flex-wrap: wrap;
align-items: stretch; /* default setting */
width: 160px;
height: 500px;
border: 1px solid red;
}
.box3 { height: 30px; }
.box1 { background-color: gray; }
.box2 { background-color: orange; }
.box3 { background-color: yellow; }
.container > div {
flex: 0 0 50px;
border: 1px solid blue;
}
* {
color: blue;
font-size: 22px;
}
<div class="container">
<div class="box1">box1</div>
<div class="box2">box2</div>
<!--<div class="box3">box3</div>-->
<div class="box1">box1</div>
<div class="box2">box2</div>
</div>
box-sizing
默认为 content-box
,高度还是250px。 align-items: stretch
设置的(自由空间,不是长度,计算)。 align-items: stretch
,让我们用
height: 50%
对于每个元素:
.container {
display: flex;
flex-wrap: wrap;
/* align-items: stretch; */
width: 160px;
height: 500px;
border: 1px solid red;
}
.box3 { height: 30px; }
.box1 { background-color: gray; }
.box2 { background-color: orange; }
.box3 { background-color: yellow; }
.container > div {
height: 50%; /* NEW */
flex: 0 0 50px;
border: 1px solid blue;
}
* {
color: blue;
font-size: 22px;
}
<div class="container">
<div class="box1">box1</div>
<div class="box2">box2</div>
<!--<div class="box3">box3</div>-->
<div class="box1">box1</div>
<div class="box2">box2</div>
</div>
box-sizing: border-box
,然后我们回到 250px,就像
align-items: stretch
.
.container {
display: flex;
flex-wrap: wrap;
/* align-items: stretch; */
width: 160px;
height: 500px;
border: 1px solid red;
}
.box3 { height: 30px; }
.box1 { background-color: gray; }
.box2 { background-color: orange; }
.box3 { background-color: yellow; }
.container > div {
box-sizing: border-box; /* NEW */
height: 50%;
flex: 0 0 50px;
border: 1px solid blue;
}
* {
color: blue;
font-size: 22px;
}
<div class="container">
<div class="box1">box1</div>
<div class="box2">box2</div>
<!--<div class="box3">box3</div>-->
<div class="box1">box1</div>
<div class="box2">box2</div>
</div>
.box3
.box3
到 HTML 结构,恢复
box-sizing: content-box
和
align-items: stretch
,并删除
height: 50%
项上。我们回到原来的布局。
.container {
display: flex;
flex-wrap: wrap;
align-items: stretch;
width: 160px;
height: 500px;
border: 1px solid red;
}
.box3 { height: 30px; }
.box1 { background-color: gray; }
.box2 { background-color: orange; }
.box3 { background-color: yellow; }
.container > div {
flex: 0 0 50px;
border: 1px solid blue;
}
* {
color: blue;
font-size: 22px;
}
<div class="container">
<div class="box1">box1</div>
<div class="box2">box2</div>
<div class="box3">box3</div>
<div class="box1">box1</div>
<div class="box2">box2</div>
</div>
align-items: stretch
第一行的元素高度为 252 像素。
align-items: stretch
第二行的元素高度为 248 像素。
box3
具有定义的实际长度(
height: 30px
),它激活
box-sizing: content-box
, 将顶部和底部边框 (2px) 添加到行高 (252px)。
box-sizing: border-box
至
box3
.
align-items
不在乎
box-sizing
.
box-sizing
确实使第一行 250 像素,边框仍然计入第二行 (248 像素)。
.container {
display: flex;
flex-wrap: wrap;
align-items: stretch;
width: 160px;
height: 500px;
border: 1px solid red;
}
.box3 { height: 30px; }
.box1 { background-color: gray; }
.box2 { background-color: orange; }
.box3 { background-color: yellow; }
.container > div {
flex: 0 0 50px;
border: 1px solid blue;
}
* {
box-sizing: border-box; /* new */
color: blue;
font-size: 22px;
}
<div class="container">
<div class="box1">box1</div>
<div class="box2">box2</div>
<div class="box3">box3</div>
<div class="box1">box1</div>
<div class="box2">box2</div>
</div>
padding
和
borders
,还有关于
line-height
的问题和
font-size
在这个特定的布局中。为了使行高清楚地有意义,您必须删除这些因素。
* {
font-size: 0;
line-height: 0;
margin: 0;
padding: 0;
border: 0;
}
.container {
display: flex;
flex-wrap: wrap;
width: 160px;
height: 500px;
}
.box3 { height: 30px; }
.box1 { background-color: gray; }
.box2 { background-color: orange; }
.box3 { background-color: yellow; }
.container > div { flex: 0 0 50px; }
<div class="container">
<div class="box1">box1</div>
<div class="box2">box2</div>
<div class="box3">box3</div>
<div class="box1">box1</div>
<div class="box2">box2</div>
</div>
500 - 30 = 470 ----> this is the free vertical space in your container
470 / 2 = 235 ----> this is the free space allocated to each row
235 + 30 = 265 ----> this is the height of the first row, since 30px is added to the free space
关于html - 了解 flex : wrap with align-items: stretch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51514843/
好吧,这是最好用图像来解释的事情...... 我正在寻找一个类似于 StretchBlt 的函数,但我可以将图像复制到定义目标四个角的 Canvas 上,即将图像的梯形/四边形拉伸(stretch)绘
我为 UITextField 制作了一个自定义键盘,其中包含 18 个 UIButton。它是一个 UIView,被设置为文本字段的 inputView。 按钮是在 UIView 的 initWith
我想创建一个 UIButton,它使用可拉伸(stretch)图像作为背景图像,例如我可以轻松调整按钮大小以适应不同的标签等。 所以我创建了以下运行良好的代码: UIImage *bgImage =
我正在尝试拉伸(stretch) UIImageView 中的图像 - 但我惨败了:) 以下设置: 带有 View 和附加到该 View 的 UIImageView 的 NIB 文件。 使用IBOut
我一直在尝试使用 html Canvas ,但由于某种原因,很难让它不拉伸(stretch)东西。我试过只使用 screen.width 和 screen.height,但我通过使用 screen.a
我想拉伸(stretch)上图的左右两侧,并保持中间的箭头不拉伸(stretch)。我怎样才能做到这一点? 最佳答案 如果你不喜欢打扰 Photoshop 并且图像不需要动态调整大小,你可以使用我在
我的页脚在一个容器中有四列。它需要在容器内以与上面的内容对齐。 我的问题是我想让左栏有红色背景,但目前它不会拉伸(stretch),因为它显然在容器中。 我怎样才能将它向左拉伸(stretch)整个宽
有没有办法拉伸(stretch)按钮,使中央部分保持完整? 9-patch 不允许这样做。 编辑:我按照 Benito 的建议使用了 9-patch。它工作正常。奇怪的是,我第一次无法得到它。 最佳答
我想拉伸(stretch)上图的左右两边,中间的箭头不拉伸(stretch)。我该怎么做? 最佳答案 如果你不想打扰 Photoshop 并且如果图像不需要动态调整大小,你可以在 UIImage 上使
我创建了一个 9patch 图像,不知何故它只能垂直拉伸(stretch)。我尝试了其他 9-patch 图像,但它们具有相同的效果,为什么它们在其他情况下工作。所以我认为 9patch 应该没问题。
我需要在边框控件(或类似控件)中绘制一些简单的线条,这些线条始终延伸到边框的边界。有没有办法只拉伸(stretch)线条而不是它的笔?不涉及大量 C#? 在这个版本中,线条延伸:
这是我的 XAML 及其外观:
编辑:答案将允许背景图像根据 body 的大小改变它的高度。如果正文是 500px 高,它应该是 100% 宽度,500px 高度。或 100% 宽度 2500 像素高度。 也许我错过了这件事,但我正
我有一个 UILabel。我设置了尾随和前导空间约束,还添加了对齐 Y 中心约束。我已将行数设置为零。 我的目标是将 UILabel 拉伸(stretch)到某个最大宽度,然后添加新行。在给定的约束条
我正在制作一个网站,对于该网站,我正在使用顶部的导航栏。我想要的是将栏放在页面的顶部,并且它是主页的单独颜色。这是我当前的代码: body { font-family: "Baloo Bhaina
我编写了代码来 reshape 已纹理化的四边形。当我拉伸(stretch)四边形时,图像确实按照我的预期拉伸(stretch)了。我似乎在拉伸(stretch)图像时有两个不同的三角形,图像被拉伸(
我在 div 中嵌入了 YouTube。此 div .entry-content 的 max-width 为 30em。 YouTube 嵌入我想要全窗口宽度,延伸到 #container 之外。为此
看: //UIImageView* stretchTest = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"image.png"]
我有一个 super 简单的网页,由纯 HTML/CSS 组成。正如预期的那样,当我在本地运行它时,一切正常。 但是,当我部署它时(使用 Droppages,一个通过 Dropbox 的静态页面托管平
我正在尝试将一个 9 色 block 图像设置为我的一项 Activity 的背景,但它不必要地拉伸(stretch),使一切变得奇怪。我使用 draw9patch 创建它,并在左下角添加了一个像素,
我是一名优秀的程序员,十分优秀!