TIL injecting links when the user wants to print thew ebpage
POSTED ON:
TAGS: css
If the user prints the page (for some reason), links get injected into the print.
Super helpful!
@media print {
a[href^="http"]::after {
content: " (" attr(href) ")";
}
}
Via https://tomasz-smykowski.com/
Related TILs
Tagged: css