We would like to know how to quotes: "mark" "mark";.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Example of CSS :lang Pseudo-class</title>
<style type="text/css">
q:lang(no) {<!-- w ww . ja v a 2s .co m-->
quotes: "~" "~";
}
</style>
</head>
<body>
<p>
Some text <q lang="no">A quote in a paragraph</q> Some text.
</p>
</body>
</html>
The code above is rendered as follows: