content 

Send to Kindle
home » snippets » css » content



Snippets

From: css-tricks.com

/* Checkmark visited links */
a:visited:before {
   content:  "\2713 ";
}

/* display full links in print stylesheets */
@media print {
  a[href]:after {
    content: " (" attr(href) ") ";
  }
}