- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在使用以下代码来使用 space-evenly
可用时:
display: flex;
// IE11: doesn't support space-evenly.
justify-content: space-around;
@supports (justify-content: space-evenly) {
// Use space-evenly if supported.
justify-content: space-evenly;
}
space-evenly
但它没有正确显示。
最佳答案
因为 Edge 确实识别 space-evenly
对于 CSS Grid,而不是 Flexbox,一个 @supports
在这种情况下将无法正常工作。
Edge 确实识别 space-between
,所以我在类似情况下所做的是设置 justify-content: space-between
作为默认值,然后跟随 @supports not
使用只有 Edge 支持的东西才能使用 space-evenly
在其他浏览器中。所以我的最终代码看起来像:
.className {
justify-content: space-between;
}
@supports not (-ms-ime-align: auto) {
.className {
justify-content: space-evenly
}
}
space-evenly
.如果您需要添加其他内容,例如外部的填充/边距,则
space-between
仍然在边缘显示一些空间,您可以将其添加到默认样式中,然后在
@supports
中将其删除.
关于css - 如何在 Edge 中检测对空间均匀的部分支持,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54882531/
我需要在半径R的圆内生成一个均匀随机点。 我意识到,通过在区间 [0 ... 2π) 中选择均匀随机的角度,并在区间 (0 ... R) 中选择均匀随机的半径,我最终会得到更多的点朝向中心,因为对于两
我想在一个正方形内生成 N 个点(均匀地)。我怎样才能做到这一点? 最佳答案 非常酷的问题,比我想象的要困难得多,但这就是想法。有关于 n 边形的论文,但我只会做正方形。因此,圆的均匀分布是一个常见问
考虑以下示例: import itertools import numpy as np a = np.arange(0,5) b = np.arange(0,3) c = np.arange(0,7)
SQL Server 将一组值分成 5 组,每组的 sum(count) 应该均匀分布。 表仅包含 2 列 rid 和 count。 create table t1(rid int, count in
我有以下简单的 HTML。 A B C 和 CSS: ul { width: 100%; display: flex; flex-direction:
我是一名优秀的程序员,十分优秀!