-1

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;}

Rosemary GAM
  • 23
  • 1
  • 7

1 Answers1

0

You have to use like this.

class-name-here {
  background-image: url('./image/file_name.hdp') 
  background-repeat: no-repeat;
  background-size:cover;
}
Arshiya Khanam
  • 613
  • 6
  • 12