-webkit 颜色不再表现得很奇怪

发布于 2024-12-05 12:36:11 字数 249 浏览 0 评论 0原文

我的 HTML 文档包含 #victimDiv ,即 background image 属性设置为:

-webkit-linear-gradient(-75deg, black 10px, #4AC0F2);

使用 ajax 调用加载 #victimDiv 且其高度延长后,渐变得到更长,因为它的长度以百分比定义,而不是以像素为单位固定。

My HTML document contains #victimDiv thats background image property is set to:

-webkit-linear-gradient(-75deg, black 10px, #4AC0F2);

After I load #victimDiv with ajax call and its height prolongs, gradient gets longer as its length is defined in percentage instead being fixed in pixels.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瞎闹 2024-12-12 12:36:11

也许是因为当元素尚未在 DOM 中时,您在该元素上应用了 css 长度参数。这是不可能的...尝试使用嵌入到相应 html 标签中的 css 来实现。

maybe it's because you apply css length parameters on an element when the element is not already in the DOM. this is not possible... try to do it with the css embedded in the respective html tag.

冷情 2024-12-12 12:36:11

我误解了语法含义:
颜色后面的像素或百分比意味着颜色从那里开始而不是结束。有点奇怪的名字color stop???
无论如何,我想要实现的正确语法是:

-webkit-linear-gradient(-75deg, black, #4AC0F2 10px);

晚安,祝你好运! :)

I misunderstood syntax meaning:
pixels or percentage after color means that color starts from there not ends. Kind of a weird name color stop???
Anyway right syntax for what I wanted to achieve is:

-webkit-linear-gradient(-75deg, black, #4AC0F2 10px);

Good night, and good luck! :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文