Skip to content

Instantly share code, notes, and snippets.

@christophfreyer
christophfreyer / quotes-example.css
Last active September 18, 2016 12:13
typografisch korrekte Anführungszeichen per CSS
/* Beispiel zu automatisierten Quotes */
q::before {
content: "\201e"; /* double low-9 */
}
q::after {
content: "\201c"; /* double high-6 */
}