Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS quotes property</title> <style> q { quotes: '[' ']' '"' '"'; } q:before { content: open-quote; } q:after { content: close-quote; } </style> </head> <body> <p><q>Here is an example of <q>embedded</q> quotations.</q></p> </body> </html>