Sass - 在多值规则中使用变量

发布于 2024-08-29 18:28:02 字数 330 浏览 5 评论 0原文

Sass 变量可以这样使用:

!blue = #3bbfce

.content_navigation
  border-color = !blue
  color = !blue - #111

这对于“单值”变量非常有效。我无法在“多值”CSS 规则上使用它们,例如背景:

!blue = #3bbfce

//this doesn't work
.content_navigation
  background =!blue url(/path/to/image) 0 0 no-repeat

我该怎么做?

Sass variables can be used like this:

!blue = #3bbfce

.content_navigation
  border-color = !blue
  color = !blue - #111

This works very well on "single-value" variables. I'm not able to use them on "multi-value" css rules, such as background:

!blue = #3bbfce

//this doesn't work
.content_navigation
  background =!blue url(/path/to/image) 0 0 no-repeat

How do I do this?

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

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

发布评论

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

评论(2

浪漫人生路 2024-09-05 18:28:02

接受的答案是旧的、已弃用的语法。查看新的 Sass 3 语法:

http:// nex-3.com/posts/94-haml-sass-3-beta-released

这将是 Sass 3 方式,使用缩进语法:

$blue: #3bbfce

.content_navigation
  background: $blue url(/path/to/image) 0 0 no-repeat

The accepted answer is old, deprecated syntax. Have a look at the new Sass 3 syntax:

http://nex-3.com/posts/94-haml-sass-3-beta-released

This would be the Sass 3 way, using the indented syntax:

$blue: #3bbfce

.content_navigation
  background: $blue url(/path/to/image) 0 0 no-repeat
岁月无声 2024-09-05 18:28:02

正确的语法应该是这样的:

!blue = #3bbfce

.content_navigation
   background= !blue "url(/path/to/image) 0 0 no-repeat"

享受 SASS!

The right sintax should be something like this:

!blue = #3bbfce

.content_navigation
   background= !blue "url(/path/to/image) 0 0 no-repeat"

Enjoy SASS!

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