css3 - Setting language for multiple elements in CSS -
css3 - Setting language for multiple elements in CSS -
what simplest way in css 3 of specifying international language variation quotes q
, blockqote
, cite
. css below works, seems rather verbose:
:lang(af) > q, :lang(af) > blockquote, :lang(af) > cite {quotes: '“' '”' '‘' '’';}
i looking less verbose solution, perhaps this:
:lang(af) > (q, blockquote, cite) {quotes: '“' '”' '‘' '’';}
but i'm not sure if kind of css declerations legal , supported browsers.
how having different classes , switch them bases con locale? obviusly no css based locale used...
css css3 iso
Comments
Post a Comment