﻿/* 
    https://developer.mozilla.org/en-US/docs/Web/CSS/:lang

    <div lang="en"><q>This English quote has a <q>nested</q> quote inside.</q></div>
    <div lang="fr"><q>This French quote has a <q>nested</q> quote inside.</q></div>
    <div lang="de"><q>This German quote has a <q>nested</q> quote inside.</q></div>
*/



:lang(en) > q {
    quotes: '\201C' '\201D' '\2018' '\2019';
}

:lang(fr) > q {
    quotes: '« ' ' »';
}

:lang(de) > q {
    quotes: '»' '«' '\2039' '\203A';
}


p:lang(fr) {
    background: yellow;
}