HTML CSS examples for CSS Widget:Quote
Adding double quotes to a paragraph with CSS
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> p.myclass:before, p.myclass:after { content:'"';<!--from www. jav a 2 s. c om--> } </style> <script type="text/javascript"> </script> </head> <body> <p class="myclass">This is my paragraph</p> </body> </html>