quotes

quotes

CSS quotes Property
The CSS quotes property is used to specify the characters that will encapsulate a string of quoted text.
CSS CODE EXAMPLE
<!DOCTYPE html>
<style type="text/css">
#p1 > q { quotes: "'" "'"; }
#p2 > q { quotes: '"' '"'; }
#p3 > q { quotes: "[" "]"; }
</style>
<p id="p1"><q>A</q></p>
<p id="p2"><q>A</q></p>
<p id="p3"><q>A</q></p>
 
A
A
A

Possible Values:

string
Specify a string as shown in the code example above.

none
Specify that no quotations marks render.

0 Response to "quotes"

Post a Comment