Search code examples
csshdpjpeg-xr

How to load hdp file as background image


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


Solution

  • You have to use like this.

    class-name-here {
      background-image: url('./image/file_name.hdp') 
      background-repeat: no-repeat;
      background-size:cover;
    }