escape quotes in css using unicode hex
This commit is contained in:
parent
6794f543e0
commit
6aafa0107d
1 changed files with 4 additions and 4 deletions
|
@ -239,20 +239,20 @@ body {
|
|||
box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
|
||||
}
|
||||
.reveal blockquote:before {
|
||||
content: '“';
|
||||
content: '\201C';
|
||||
}
|
||||
.reveal blockquote:after {
|
||||
content: '”';
|
||||
content: '\201D';
|
||||
}
|
||||
|
||||
.reveal q {
|
||||
font-style: italic;
|
||||
}
|
||||
.reveal q:before {
|
||||
content: '“';
|
||||
content: '\201C';
|
||||
}
|
||||
.reveal q:after {
|
||||
content: '”';
|
||||
content: '\201D';
|
||||
}
|
||||
|
||||
.reveal pre {
|
||||
|
|
Loading…
Reference in a new issue