gpt4 book ai didi

css - 速记 CSS 与普通 CSS 不同

转载 作者:太空宇宙 更新时间:2023-11-04 01:34:41 24 4
gpt4 key购买 nike

正如我在标题中所说,这个速记:

.settingsSelect {
background: url('../images/Custom.Select.Background.png'), url('../images/Settings.Input.Background.png') no-repeat, repeat 97%, 0;
background-size: 12px, contain;
}

显示为

bad shorthand

并使用适当的手写方式:

.settingsSelect {
background-image: url('../images/Custom.Select.Background.png'), url('../images/Settings.Input.Background.png');
background-position: 97%, 0;
background-repeat: no-repeat, repeat;
background-size: 12px, contain;
}

一切都按预期进行。

longhand

问题出在哪里?谢谢。

最佳答案

速记版本中的语法不正确。应该是:

.settingsSelect {
background: url('../images/Custom.Select.Background.png') no-repeat 97%, url('../images/Settings.Input.Background.png') repeat 0;
}

可以这样想:

.selector {
background: background1, background2, background3, etc;
}

其中 background1background2 等都是 background 的简写:

url() repeat X%;

关于css - 速记 CSS 与普通 CSS 不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46456921/

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