Radio Button list during window.print() doesn't show checked line :(

Hello all
I use in my project RadioButton list in form and then I want to print page with window.print()
But on the page is not show the checked button.
Is it some way for this issue?
I try CSS style some this but it doesn't work :frowning:

input[type="radio"]:checked {
        font-weight: bold;
    }

If you enable background graphics it will show (the radio button uses background color for the styling):

print-radiobutton

1 Like

So I solved this issue :smiley: I have to use in my CSS these and now is it good.
Thank you

 .ui-state-active {
        -webkit-print-color-adjust: exact;
    }
 .ui-label-active {
        font-weight: bold !important;
        font-size: 20px !important;
        -webkit-print-color-adjust: exact;
    }

where did u apply the styling to?

Hy you have to edit ccs file in your project.
image