- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所有关于 CSS 网格的指南似乎都暗示了一种结构,其中位于网格中的元素是网格元素本身的直接子元素:
<div class="wrapper">
<div>A</div>
<div>B</div>
</div>
其中 .wrapper
具有 display: grid
和 grid 属性的定义。
如果我想将作为网格“孙子”的元素放置在网格本身(而不是依赖其父元素)上,这是否有意义?
<div class="wrapper">
<div>A</div>
<div>
<div>B</div>
<div>C</div>
</div>
</div>
我想将 A
、B
和 C
分别放在各自的网格行上;这甚至有意义吗?
最佳答案
显示:子网格
来自 CSS Grid Level 2 draft spec :
Subgrids provide the ability to pass grid parameters down through nested elements, and content-based sizing information back up to their parent grid.
If the element is a grid item (i.e. it is in-flow and its parent is a grid container),
display: subgrid
makes the element a subgrid (which is a special type of grid container box) and consequently ignores itsgrid-template-*
andgrid-*-gap
properties in favor of adopting the parent grid tracks that it spans.A grid item can itself be a grid container by giving it
display: grid
. In this case the layout of its contents will be independent of the layout of the grid it participates in.In some cases it might be necessary for the contents of multiple grid items to align to each other. A grid container that is itself a grid item can defer the definition of its rows and columns to its parent grid container by using
display: subgrid
, making it a subgrid.In this case, the grid items of the subgrid participate in sizing the grid of the parent grid container, allowing the contents of both grids to align. Read more.
此功能尚未在主要浏览器中实现。谁知道什么时候。
在网格中,只有容器的流入子元素成为网格项,才能接受网格属性。
在网格元素上使用 display: subgrid
,元素的子项遵循容器的行。
根据Grid Level 1 spec , display: subgrid
已推迟到 Level 2 .
目前,网格项(即嵌套网格容器)上的 display: grid
在某些情况下可能很有用。
另一种可能的解决方法是 display: contents
。该方法在这里解释:
更多信息:
关于css - 是否有 "subgrid"功能,用于定位网格容器的 "grandchildren"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58459731/
我有一个使用 subGrid 的网格(版本 4.1.1)。我正在使用 loadonce: true 和 scroll: 1. 当网格第一次加载时,我可以毫无问题地打开 subGrids,直到 我将主网
我想将 jqgrid 与子网格一起使用。我创建了一个 jqgrid 表。但是,我想在 subgrid 中显示描述和符号。 我还包含了 JSOn 数据和我的代码片段以及 fiddle demo here
我需要一些关于如何在以下场景中实现子网格的想法。 以下是我想要在 JQuery 网格和子网格中显示的 json 数据。基本上我得到一个名为“Contact”的对象,它有一个名为“actionSet”的
我正在使用一个简单的子网格创建 jqGrid。我已经设置了属性 autowidth:true 使jqGrid扩展到父元素的宽度。当我扩展子网格未扩展至 jqGrid 宽度的行。子网格的宽度仍然是所有子
如何读取这个jqgrid/subGrid 3级的第三级文件?我可以阅读第一和第二层的行,但我不知道如何阅读第三层。问候。 我只需要阅读第三级网格。 how do I read these rows.p
我创建了一个程序,让用户输入 9x9 数独谜题的所有值,将这些值存储在数组中,并可以检查所有行和列中的值是否不同,但我我无法理解如何实现代码来专注于 3x3 的每个子网格。我想我必须有最后一个嵌套的
所有关于 CSS 网格的指南似乎都暗示了一种结构,其中位于网格中的元素是网格元素本身的直接子元素: A B 其中 .wrapper 具有 display: grid 和 grid 属性的定
所有关于 CSS 网格的指南似乎都暗示了一种结构,其中位于网格中的元素是网格元素本身的直接子元素: A B 其中 .wrapper 具有 display: grid 和 grid 属性的定
我已经在竞争性程序员手册中找到了关于问题的解释,但我并不真正理解它如何包含问题的所有解决方案,我想知道是否有人可以为我解释它。如果不确定有关该问题的信息,我不确定是否只是无法正确理解解决方案。问题和解
我正在尝试使用 CRM 2015 在线的 fetchXml 结果填充子网格。一开始的一个问题是 document.getElementById("leadUmbrellaGrid"); 返回 null
我也想从主网格中完全隐藏它。 查看图片了解更多信息。 提前致谢。 最佳答案 您需要隐藏的列的名称为"subgrid"。所以要隐藏它,你可以使用 $("#grid").jqGrid("hideCol",
我是一名优秀的程序员,十分优秀!