I converted jpg files to hdp files to speed up website loading. I want to load these files via the background property. However, the hdp file is not loaded from the website. How can I use an hdp file? The server is windows10 / Apache2.4
{background:url(./image/file_name.hdp) no-repeat;background-size:cover;}
You have to use like this.
class-name-here {
background-image: url('./image/file_name.hdp')
background-repeat: no-repeat;
background-size:cover;
}