我试图通过在视觉上创建一个变量来为 div 提供背景图像。
我正在仔细阅读一个属性,当我将它提供给样式标签时,它不起作用。
这是html
<sly data-sly-test.fileReference="${properties.title}" />
<div style="background: url(${fileReference}); background-position: center top;">
<p>${properties.title}</p>
呈现页面时,这就是我所看到的
<div style="background: url(); background-position: center top;">
<p>my Title</p></div>
这意味着标签${properties.title}
内部<p>
被接受,但它不适用于内部样式元素。