-webkit 颜色不再表现得很奇怪
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许是因为当元素尚未在 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.
我误解了语法含义:
颜色后面的像素或百分比意味着颜色从那里开始而不是结束。有点奇怪的名字
color stop
???无论如何,我想要实现的正确语法是:
晚安,祝你好运! :)
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:
Good night, and good luck! :)