I am defining css variable like
<style type="text/css">
@variables {
static:{{STATIC_ROOT_PATH}};
}
</style>
I want to use this variable while framing image path. Is it possible something like
background: transparent url('var(static)/images/button_bg.png')
This code is not working for me.
How can I frame image path based on static value ?