I\'m making some printable calendar website using HTML, CSS and JS.
Unfortunately I cannot use CSS property called text-shadow, because shadow behind te
text-shadow
Here is the solution:
@media print { .item { -webkit-filter: drop-shadow(4px 4px 1px #ccc); text-shadow: 4px 4px 1px #ccc; } }