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

Popular posts from this blog

formatting - SAS SQL Datepart function returning odd values -

c++ - Apple Mach-O Linker Error(Duplicate Symbols For Architecture armv7) -

php - Yii 2: Unable to find a class into the extension 'yii2-admin' -