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

Live Demo

<!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>
Updated on: 2020-06-25T10:01:05+05:30

111 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements