Adding double quotes to a paragraph with CSS - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Quote

Description

Adding double quotes to a paragraph with CSS

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials