

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set quotation marks with CSS
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>
- Related Questions & Answers
- How to set the type of quotation marks for embedded quotations with JavaScript?
- How to use quotation marks in HTML?
- Quotation in Python
- Set border width with CSS
- Set Inset border with CSS
- Set Outset border with CSS
- Set Mask Effect with CSS
- Set left tooltip with CSS
- Set bottom tooltip with CSS
- Set Invert Effect with CSS
- Set Grayscale Effect with CSS
- Set right tooltip with CSS
- Set top tooltip with CSS
- Set the link color with CSS
- Set the Background Attachment with CSS
Advertisements