Default styling for <q> is removed
Created by: acdha
Currently generated quotes are reset for both <blockquote>
and <q>
:
// Quotes
q:before,
q:after,
blockquote:before,
blockquote:after {
content: "";
}
Unfortunately no styling is set for <q>
, making the tag effectively invisible. Since the browser default :before { content: open-quote; } :after { content: close-quote; }
is adequate, the fix should be as simple as removing the q: selectors.