I have a div with white text color.
Using css media queries.
@media print {
.myid_print_duo_name
{
z-index: 2;
position: absolute;
left: 0px;
top: 330px;
width: 303px;
height: 28px;
line-height: 28px;
text-align: center;
color: white !important;
font-weight: bold;
font-size: 20px;
font-family: "Times New Roman";
}
}
My text looks like a little bit darker in my print preview.
I thought it was just ok, but then the printed result is really the same in my print preview. Why is it turning a little bit darker?
MDN Docs: Adding this below rule will overwrite the user's printer property settings.