- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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>
- Related Articles
- HTML DOM Style quotes Property
- How to create a quotes slideshow with CSS and JavaScript?
- CSS padding property
- CSS outline property
- CSS height property
- CSS width property
- CSS order property
- CSS all Property
- CSS pitch property
- Orphans CSS Property
- CSS azimuth Property
- CSS stress property
- CSS background property
- CSS pause property
- CSS speak property

Advertisements