- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我问这里是因为我数学很烂。
假设网格大小为 1920 像素,并且我没有使用显式大小调整。
即有多少 fr。 1200 像素?我如何计算它?
.grid {
display: grid;
grid-template-columns: 1fr 3.3335fr 1fr;
}
规范说:
12.7.1. Find the Size of an
fr
This algorithm finds the largest size that an fr unit can be without exceeding the target size. It must be called with a set of grid tracks and some quantity of space to fill.
- Let leftover space be the space to fill minus the base sizes of the non-flexible grid tracks.
- Let flex factor sum be the sum of the flex factors of the flexible tracks. If this value is less than 1, set it to 1 instead.
- Let the hypothetical fr size be the leftover space divided by the flex factor sum.
- If the product of the hypothetical fr size and a flexible track’s flex factor is less than the track’s base size, restart this algorithm treating all such tracks as inflexible.
- Return the hypothetical fr size.
他们的意思是“假设的 fr 大小”是单位 (1fr)?我想是的
1920/(1+3.3335+1) = 359.988750352 <-- The hypothetical fr size
359.988750352 * 3.3335 = 1200.0224993
所以我想这是一种获取有多少像素是 n fr 值的方法。
但是,如果我想反其道而行之,这将是计算 1200px 有多少 fr 的正确方法/正确公式?
更新:
这是我正在做的一个活生生的例子。 minmax(min, max)
对我帮助很大。我已经解决了一些溢出的错误。并想出了如何在网格模板轨道中使用 rem 单位但仍然受益于缩小 :D
https://codepen.io/jeflopo/pen/OmZBEJ
/**********************************/
/* BODY - THE MAIN GRID CONTAINER */
/**********************************/
/**********************************/
/* DEFINING GRID AREAS */
/**********************************/
.header {
grid-area: header;
}
.navigation {
grid-area: nav;
}
.main {
grid-area: main;
}
.posts {
grid-area: posts;
}
.sidebar {
grid-area: sidebar;
}
.footer {
grid-area: footer;
}
/**********************************/
/* HOW HAS GRID AREAS TO BEHAVE ? */
/**********************************/
/* I'VE LET THEM TO SHRINK TO 0 AND I WILL CONTROL IT WITH MEDIA QUERIES
SETTING `min` of minmax(min, max) to 0 DRASTICALLY PREVENTS THE LAYOUT TO OVERFLOW WHEN RESIZING THE WINDOW.
*/
.header,
.navigation,
.main,
.footer {
display: grid;
grid-template-columns: 1fr minmax(0, 120rem) 1fr;
}
.main .container {
display: grid;
grid-gap: 1rem;
grid-template-columns: minmax(0, 120rem) 30rem;
grid-template-areas: "posts sidebar";
margin: 0;
padding: 1rem 0;
}
.main .posts {
grid-column: 1/2;
padding: 1rem;
}
.main .sidebar {
grid-column: 2/3;
padding: 1rem;
}
/**********************************/
/* CONTENT WRAPPER */
/**********************************/
/* THESE GRID AREAS (header, main, and footer) OCCUPY FULL TRACKS.
I USE THIS TO CONSTRAINT THE CONTENT OF GRID AREAS TO THE CENTER COLUMN IN THE MAIN GRID. */
.container {
grid-column: 2/3;
}
/******************************************/
/* SOME BASIC STYLING PRESETS */
/******************************************/
html {
font-size: 10px;
}
body {
font-family: 'Open Sans', sans-serif;
font-size: 1.6rem;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #00f;
}
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
li {
display: inline;
}
li a {
color: #fff;
}
.header {
background: #888;
}
.navigation {
background: #666;
}
.posts {
background: #f66;
}
.sidebar {
background: #6f6;
}
.footer {
background: #888;
}
<header class="header">
<div class="container">
<div class="header__logo">
<a href="#"><h1>LOGO</h1></a>
</div>
</div>
</header>
<nav class="navigation">
<ul class="container">
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Item 3</a></li>
</ul>
</nav>
<main class="main" role="main">
<div class="container">
<section class="posts">
<article class="post">
<h1>This is a title</h1>
<p>This is the body of an article</p>
</article>
</section>
<aside class="sidebar">
<span>SIDEBAR</span>
</aside>
</div>
</main>
<footer class="footer">
<div class="container">
<p>FOOTER</p>
</div>
</footer>
最佳答案
您有一个网格容器,沿 X 轴或 Y 轴(无关紧要)有 1200 像素的自由空间。
如果容器有一个网格轨道设置为 1fr
,该列/行将占用全部 1200px。
如果您有 grid-template-columns: 1fr 1fr
,那么每列将获得平均分配的可用空间。因此每列的宽度为 600 像素,类似于:
grid-template-columns: 600px 600px
在您的情况下,它是这样工作的:
It must be called with a set of grid tracks and some quantity of space to fill.
您已使用此规则调用网格轨道:
grid-template-columns: 1fr 3.3335fr 1fr
您要填充的空间是 1200px。
- Let leftover space be the space to fill minus the base sizes of the non-flexible grid tracks.
同样,要填充的空间(“剩余空间”)是 1200px。
没有非灵活的网格轨道。这就像设置为 200px 的列:
grid-template-columns: 1fr 3.3335fr 200px 1fr
fr 算法会减去那条 200 像素的轨道。剩余空间可供 fr 使用。
- Let flex factor sum be the sum of the flex factors of the flexible tracks.
这意味着我们将 fr
值相加:
1 + 3.3335 + 1 = 5.3335
flex 因子总和为 5.3335。
- Let the hypothetical fr size be the leftover space divided by the flex factor sum.
1200 像素/5.3335fr = 225 像素
现在我们知道每个 fr
单位代表 225px。
1fr
= 225px2fr
= 450px3fr
= 675px这意味着:
grid-template-columns: 1fr 3.3335fr 1fr
相当于:
grid-template-columns: (1fr x 225px) (3.3335fr x 225px) (1fr x 225px)
结果是:
grid-template-columns: 225px 750.0375px 225px
不过,请务必注意,fr
单元并非旨在为网格轨道设置特定长度。它的工作是分配容器中的空闲空间(类似于 flexbox 的 flex-grow
)。所以你的问题似乎有点理论化和不切实际。如果容器的大小发生了轻微的调整,或者混合中加入了不灵活的轨道,则上述所有像素计算都会被取消。
更新(基于评论)
There's an small error. My grid size is 1920px not 1200... But its an extrapolable example. I wanted 3.3335fr relate to 1200px, and not to be the sum of all tracks... 3.3335fr are ~1200px with two adjacent 1fr columns in a grid thats 1920px width.
如果网格容器的宽度为 1920px,则假设的 fr 大小为 360px。
这意味着:
grid-template-columns: (1fr x 360px) (3.3335fr x 360px) (1fr x 360px)
结果是:
grid-template-columns: 360px 1200px 360px
关于css - 计算 fr 单位的实际长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43944078/
将 KLV 字符串拆分为键、长度、值作为元素的列表/元组的更有效方法是什么? 为了添加一点背景,前 3 位数字作为键,接下来的 2 位表示值的长度。 我已经能够使用以下代码解决该问题。但我不认为我的代
首先,我试图从文件中提取视频持续时间,然后在无需实际上传文件的情况下显示它。 当用户选择视频时 - 信息将显示在其下方,包括文件名、文件大小、文件类型。不管我的技能多么糟糕 - 我无法显示持续时间。我
我是 Scala 编程新手,这是我的问题:如何计算每行的字符串数量?我的数据框由一列 Array[String] 类型组成。 friendsDF: org.apache.spark.sql.DataF
我有一个React Web应用程序(create-react-app),该应用程序使用react-hook-forms上传歌曲并使用axios将其发送到我的Node / express服务器。 我想确
如果给你一个网络掩码(例如 255.255.255.0),你如何在 Java 中获得它的长度/位(例如 8)? 最佳答案 如果您想找出整数低端有多少个零位,请尝试 Integer.numberOfTr
我需要使用 jQuery 获取 div 数量的长度。 我可以得到它,但在两个单击事件中声明变量,但这似乎是错误的,然后我还需要使用它来根据数字显示隐藏按钮。我觉得我不必将代码加倍。 在这里摆弄 htt
我对此感到非常绝望,到目前为止我在 www 上找不到任何东西。 情况如下: 我正在使用 Python。 我有 3 个数组:x 坐标、y 坐标和半径。 我想使用给定的 x 和 y 坐标创建散点图。 到目
我有一个表单,我通过 jQuery 的加载函数动态添加新的输入和选择元素。有时加载的元素故意为空,在这种情况下我想隐藏容器 div,这样它就不会破坏样式。 问题是,我似乎无法计算加载的元素,因此不知道
我决定通过替换来使我的代码更清晰 if (wrappedSet.length > 0) 类似 if (wrappedSet.exists()) 是否有任何 native jq 函数可以实现此目的?或者
简单的问题。如果我有一个如下表: CREATE TABLE `exampletable` ( `id` int(11) NOT NULL AUTO_INCREMENT, `textfield`
我正在使用经典 ASP/MySQL 将长用户输入插入到我的数据库中,该输入是从富文本编辑器生成的。该列设置为 LONG-TEXT。 作为参数化查询(准备语句)的新手,我不确定用于此特定查询的数据长度。
我正在获取 Stripe 交易费用的值(value)并通过禁用的文本字段显示它。 由于输入文本域,句子出现较大空隙 This is the amount $3.50____________that n
我有一个 div,其背景图像的大小设置为包含。但是,图像是视网膜计算机(Macbook Pro 等)的双分辨率图像,所以我希望能够以某种方式让页面知道即使我说的是背景大小:包含 200x200 图像,
我正在开发一个具有“已保存”和“已完成”模块的小部件。当我删除元素时,它会从 dom 中删除/淡化它,但是当我将其标记为完成时,它会将其克隆到已完成的选项卡。这工作很棒,但顶部括号内的数字不适合我。这
我有一个来自 json 提要的数组,我知道在 jArray 中有一个联盟,但我需要计算出该数组的计数,以防稍后将第二个添加到提要中。目前 log cat 没有注销“teamFeedStructure”
目标:给定一个混合类型的数组,确定每个级别的元素数量。如果同一层有两个子数组,则它们的每个元素都计入该层元素的总数。 方法: Array.prototype.elementsAtLevels = fu
我需要帮助为 Java 中的单链表制作 int size(); 方法。 这是我目前所拥有的,但它没有返回正确的列表大小。 public int size() { int size = 0;
我正在为学校作业创建一个文件服务器应用程序。我目前拥有的是一个简单的 Client 类,它通过 TCP 发送图像,还有一个 Server 类接收图像并将其写入文件。 这是我的客户端代码 import
我有这对功能 (,) length :: Foldable t => t a -> b -> (Int, b) 和, head :: [a] -> a 我想了解的类型 (,) length he
我正在GitHub Pages上使用Jekyll来构建博客,并希望获得传递给YAML前题中Liquid模板的page.title字符串的长度,该字符串在每个帖子的YAML主题中。我还没有找到一种简单的
我是一名优秀的程序员,十分优秀!