Edit in JSFiddle

<p>content에서 <q>open-quote</q>, <q>close-quote</q>에 사용할 인용부호의 속성을 지정합니다. </p>
q{
    quotes:  '«' '»';
}
q:before {
    content: open-quote;
}
q:after {
    content: close-quote;
}