gpt4 book ai didi

CSS 背景网格 : horizontal repeating-linear-gradient with single vertical column

转载 作者:太空宇宙 更新时间:2023-11-03 22:33:28 26 4
gpt4 key购买 nike

我正在尝试仅使用 CSS 在单个元素上创建特定的背景图案。下图显示了我想要的最终结果:

enter image description here

我可以使用以下方法创建重复的水平条纹:

  background-image: repeating-linear-gradient(
to bottom,
#f7f7f8 0,
#f7f7f8 32px,
rgba(255, 255, 255, 0) 32px,
rgba(255, 255, 255, 0) 64px
);

但我正在努力将其与右侧的垂直条结合起来。我什至不确定是否有可能实现我想要的......它需要:

  • 与右手边的距离以像素为单位
  • 固定宽度,以像素为单位
  • 完全覆盖下面的水平网格,即。无论底层颜色如何,它都应该是相同的颜色 - 没有透明度。

这可能吗?

最佳答案

您可以将 2 个渐变叠加在一起。首先总是在下一个之上。

html {
min-height: 100%;
background: linear-gradient(
to left,
transparent 140px,
grey 140px,
grey 143px,
transparent 143px
),
repeating-linear-gradient(
to bottom,
lightgrey 0,
lightgrey 20px,
transparent 20px,
transparent 40px
);
}

关于CSS 背景网格 : horizontal repeating-linear-gradient with single vertical column,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47655055/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com