This is used to help cache bust browser url requests, such as when importing fonts with @font-face
.
cache-buster()
Default:
9999999999
This number is used to generate a random hash - higher is better
Default:
?
Used to attach the seed number to the URL.
Note: If the url already has a query string on it, you may want to consider changing this to an ampersand
&
so the cache-buster isn't interfering with any other of the queries.
.element {
background-image: url('image.png' + cache-buster());
}
.element {
background-image: url('image.png?912932');
}