Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

CSS Properties

CSS quotes Property

Posted in CSS Tutorial
Updated on Oct 07, 2024
By Mari Selvan
👁️ 7 - Views
⏳ 4 mins
💬 1 Comment
CSS quotes Property

Photo Credit to CodeToFun

🙋 Introduction

The quotes property in CSS is used to define the type of quotation marks to be used for the content property in pseudo-elements like ::before and ::after.

This property allows you to specify which quotation marks should be used for nested quotations, providing greater control over the typography and style of your text content.

💡 Syntax

The syntax for the quotes property involves specifying a list of pairs of opening and closing quotes.

Syntax
Copied
Copy To Clipboard
element {
  quotes: none | [open-quote close-quote] [open-quote close-quote]*;
}

🎛️ Default Value

The default value of the quotes property is dependent on the browser's default settings, which typically use standard quotation marks for the language of the document.

🏠 Property Values

ValueDescription
noneNo quotes will be used.
[open-quote close-quote]Specifies pairs of opening and closing quotes for different levels of quotation.

📄 Example

In this example, we'll define custom quotes for blockquotes and nested quotes.

index.html
Copied
Copy To Clipboard
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>CSS quotes Property Example</title>
  <style>
    blockquote {
      quotes: "“" "”" "‘" "’";
    }
    blockquote::before {
      content: open-quote;
    }
    blockquote::after {
      content: close-quote;
    }
    blockquote q::before {
      content: open-quote;
    }
    blockquote q::after {
      content: close-quote;
    }
  </style>
</head>
<body>
  <h1>Blockquote with Custom Quotes</h1>
  <blockquote>
    This is a blockquote with custom quotes.
    <q>This is a nested quote within the blockquote.</q>
  </blockquote>
</body>
</html>

🖥️ Browser Compatibility

The quotes property is supported in most modern browsers, including the latest versions of Chrome, Firefox, Safari, Edge, and Opera. However, it is always a good practice to test your website across different browsers to ensure compatibility.

🎉 Conclusion

The quotes property in CSS is a useful tool for controlling the appearance of quotation marks in your web content.

By defining custom quotes, you can enhance the readability and aesthetic appeal of your text, especially when dealing with nested quotations. Experiment with different styles and see how this property can improve the typography of your web projects.

👨‍💻 Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
👋 Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy