Sass背景百分比位置

时间:2018-05-03 14:48:54

标签: css sass semantics squarespace

如何阻止Sass对以下background-position声明执行计算?

background: #000 url('/foo.png') no-repeat fixed center 110%/115%

找到错误。它与SquareSpace服务器及其编译预编译的CSS有关。这个问题必须在他们的最后解决。

1 个答案:

答案 0 :(得分:2)

使用string literals/interpolation, #{"<string>"}

background: #000 url('/foo.png') no-repeat fixed center 110%#{"/"}115%

正如您所提到的,您可能正在通过LESS编译器传递文件,那么您需要escape the offending string using ~"<string>"

background: #000 url('/foo.png') no-repeat fixed center ~"110%/115%"