- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我读过好几遍,要让 flex-grow
按预期工作,您通常需要设置 flex-grow:1
(或 flex: 1
) 在元素的父级、其父级等上,一直向上。
在学习 flexbox 时,这给我的印象是它具有某种层次结构。
但我刚刚了解到所有 flow-*
属性都不是分层的,并且仅直接应用于容器及其直接子级。
我认为除了我之外的许多人都会受益于对 flex 属性的清晰解释,尤其是 flex-grow
与元素/组件层次结构的交互以及设置属性时您实际在做什么使您的布局正常工作的祖先节点。
这在 React Native 中可能是一个更大的问题,其中 flex 是布局的主要方法,布局可能涉及比 web 上常见的更深的嵌套。
在我的案例中,一个增加了困惑的相关因素是如何通过祖先手动传播 flex-grow
这种方式与 flex-direction
一起工作,尤其是在 React Native 中,通常会在 row
和 column
之间交替。
最佳答案
...for setting “flex:1” or “flex-grow:1” on all ancestor nodes in nested flex layouts...
说“在所有祖先节点上”是不准确的,应该是在所有后代节点上,这在父/子,意思是,flex-grow
是在 child 上设置的,而不是 parent,但是因为一个元素可以同时是 parent 和一个 child,一般称为 nested flex 元素,一个 parent 可以有 flex-grow
如果它也是一个 child 。
flex 格式化上下文 在这里有一个很好解释的答案:
...what you're actually doing when setting the property on the ancestor nodes to get your layout to work.
同样,说“在祖先节点上设置属性”是不准确的,您在后代节点上设置属性强>
Explanation for setting “flex:1” or “flex-grow:1” ... in nested flex layouts
首先,设置flex: 1
等于flex: 1 1 0
,flex-grow: 1
等于flex: 1 1 auto
,这是基于 flex
默认为 flex: 0 1 auto
,这里有很好的解释:
现在,flex-grow
默认为 0
,这意味着它不会大于其内容,类似于 inline-block
code> 元素工作,并且将像这样呈现:
body { margin: 0; }
.flex-container {
display: flex;
height: 100vh;
}
.flex-parent {
display: flex;
}
.row-direction {
flex-direction: row;
}
.column-direction {
flex-direction: column;
}
.flex-child {
margin: 2px;
border: 1px dashed gray;
}
<div class="flex-container column-direction">
<div class="flex-child flex-parent row-direction">
<div class="flex-child">
First row, first item
</div>
<div class="flex-child">
First row, second item
</div>
<div class="flex-child">
First row, third item
</div>
</div>
<div class="flex-child flex-parent row-direction">
<div class="flex-child">
Second row, first item
</div>
<div class="flex-child">
Second row, second item
</div>
</div>
<div class="flex-child flex-parent row-direction">
<div class="flex-child">
Third row, first item
</div>
</div>
</div>
那么 flex-grow: 1
所做的就是让元素增长并填充其父元素中的可用空间,就像这样,正如您所看到的,这里在行和列之间交替React 经常这样做,它完美地工作:
body { margin: 0; }
.flex-container {
display: flex;
height: 100vh;
}
.flex-parent {
display: flex;
}
.row-direction {
flex-direction: row;
}
.column-direction {
flex-direction: column;
}
.flex-child {
flex-grow: 1;
margin: 2px;
border: 1px dashed gray;
}
<div class="flex-container column-direction">
<div class="flex-child flex-parent row-direction">
<div class="flex-child">
First row, first item
</div>
<div class="flex-child">
First row, second item
</div>
<div class="flex-child">
First row, third item
</div>
</div>
<div class="flex-child flex-parent row-direction">
<div class="flex-child">
Second row, first item
</div>
<div class="flex-child">
Second row, second item
</div>
</div>
<div class="flex-child flex-parent row-direction">
<div class="flex-child">
Third row, first item
</div>
</div>
</div>
关于css - 考虑到 flex 属性不是分层的,在嵌套 flex 布局中的所有祖先节点上设置 "flex:1"或 "flex-grow:1"的解释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46459506/
在 Django 中如何处理分层 URL?有什么最佳做法吗?例如。如果我有一个像 /blog/category1/category2/myblogentry 这样的 URL(使用例如 django-m
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
有没有办法在 R 中创建这样的图表? 以下是图表中显示的数据的摘录: df % group_by(Animal) %>% unite(col=Type, Animal:Name, sep =
我一直在努力处理一些时间戳数据(直到现在才需要处理日期,并且它表明)。希望您能帮忙。 我正在处理来自网站的数据,该数据显示每个客户 (ID) 各自的访问以及这些访问的时间戳。它的分组是指一个客户可能有
我一直在努力处理一些时间戳数据(直到现在才需要处理日期,并且它表明)。希望您能帮忙。 我正在处理来自网站的数据,该数据显示每个客户 (ID) 各自的访问以及这些访问的时间戳。它的分组是指一个客户可能有
我正在尝试完成这段代码: ORDER BY IF(j.groups IS NULL OR j.groups = '', IF(j.title IS NULL, i.title), j.groups)
我有一个非常抽象的问题,因为我不确定如何提出它。我的其中一个 View 上有一个 UIImageView。我想让 ImageView 看起来“压入 super View ”。我不确定技术术语是什么,但
我希望 100% 宽的包含图像的 div 位于我的页面下方。在这些 div 之上,我想要一个 1210 像素宽的 div,我可以在其中放置我的内容。 例子: http://mudchallenger.
我目前正在做一个类似于 http://www.beoplay.com/Products/BeoplayA9#under-the-hood 的元素使用 Javascript、HTML5 和 CSS3。我
我想像上面那样创建图像缩略图..为此,我在下面创建了 XML activity_main.xml
我想知道是否可以定义一个分层 MapReduce 作业?。换句话说,我想要一个 map-reduce 作业,在 mapper 阶段将调用不同的 MapReduce 作业。可能吗?您对如何操作有什么建议
程序设计: A 类,实现较低级别的数据处理 类 B-E,为 A 提供更高级别的接口(interface)以执行各种功能 F 类,它是根据用户输入与 B-E 交互的 UI 对象 在任何给定时间只能有一个
CTE 对我来说有点新,所以我希望有人可以帮助我编写的以下内容将采用类别表并从中构建层次结构以进行显示。我知道这种事情一直被问到,但我认为我的排序情况使它有点独特。 我希望有一些使用 Hierarch
我有关于 的问题群 在聚类分析(层次聚类)中。例如,这是 的完全链式的树状图。虹膜数据集 . 我使用后 > table(cutree(hc, 3), iris$Species) 这是输出 : se
数据 我有以下(简化的)数据集,我们称之为 df从现在开始: species rank value 1
Delphi 2009 中的分层窗口和系统菜单存在问题。也就是说,我们的分层窗口(没有边框)没有系统菜单。当我说系统菜单时,我指的是单击应用程序的图标、右键单击其标题栏或(在 Windows 7 中,
我正在制作一个 pototype HMTL5 Canvas 动画,该动画将导出到 Quicktime。 我有一个动态生成的背景,上面有动态屏蔽的元素。 我可以获取要制作的背景,并将其作为逐帧动画(pn
好吧,我有一个打印棋盘的类和另一个打印国际象棋的类 如何使用 LayeredPane 将它们合并在一起,如上面的示例图片所示?我一整天都在尝试,但似乎没有任何效果。我正在使用 JFrame 打印图片。
这是我的场景。我有两个类(class) ClassA 和 ClassB。 B类继承A类。 我在它们两个上使用@Component注释来使它们成为Spring bean。 @Component publ
这不是一道问题题,而是一道使用工具——leiningen——的题。 在一个主项目下创建分层的 lein 项目是否有优势,如果有,优势是什么? 如果我使用 lein new bene-cmp 创建一个项
我是一名优秀的程序员,十分优秀!