Answer the question
In order to leave comments, you need to log in
How to set background image in domPDF?
Does anyone know how to set a background image in domPDF? Tried to set background via css does not display. Is there any solution?
Answer the question
In order to leave comments, you need to log in
try
html {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
background-image: url(images/bg.jpg); /* Путь к фоновому изображению */
background-color: #c7b39b; /* Цвет фона */
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question