Computer >> Computer tutorials >  >> Programming >> CSS

CSS quotes Property


Use the quotes property to set quotation marks. You can try to run the following code to implement the quotes property

Example

<!DOCTYPE html>
<html>
   <head>
      <style>
         #demo {
            quotes: "'" "'";
         }
      </style>
   </head>
   <body>
      <p>
         <q id = "demo">
            This is demo text surrounded by quotes.
         </q>
      </p>
   </body>
</html>