Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Pukun
Contributor
Contributor

Set an image for sheet background responsively?

I use Milti-KPI to change sheet background to an Image.

But the size is not suitbale.

How to set the image suitable?

Or what size of image should I perpare?

Labels (2)
1 Reply
ogster1974
Partner - Master II
Partner - Master II

Some CSS Properties that might be useful to you.

{
  background-image: url("photographer.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}