We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When url uses custom property it is prepended with a path so that this
url
background-image: url(var(--nice-view));
turns to
background-image: url(/path/to/css/var(--nice-view));
Is there a way to avoid this?
The text was updated successfully, but these errors were encountered:
Of course there’s a way. Just include url in your custom property so that instead of this
you would write this
background-image: var(--nice-view);
And the property has to be defined like this: --nice-view: url(path/to/img.jpg);.
--nice-view: url(path/to/img.jpg);
Sorry, something went wrong.
No branches or pull requests
When
url
uses custom property it is prepended with a path so that thisturns to
Is there a way to avoid this?
The text was updated successfully, but these errors were encountered: