Print format background issue

i want background color only for print page ,bt when i used css like this , i have gotten this type of background color ,which i don’t want…!

body{
background-color:gree;
}

@rakesh2018 Try this:

.print-format{
background-color:green;
}

1 Like