Links
- See also: Pseudo Elements
- The 'content' property
- CSS Property: content
- css-tricks.com: content
- e.g. Take a picture from the camera via
<input type="file" accept="image/*" capture="camera">
- e.g. Take a picture from the camera via
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) ") "; } }