Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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> Advertisements
