Files
30-seconds-of-code/snippets/css/s/stylized-quotation-marks.md
2023-05-07 16:07:29 +03:00

26 lines
447 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Stylized quotation marks
type: snippet
language: css
tags: [visual]
author: chalarangelo
cover: coffee-phone-tray
dateModified: 2021-05-16T19:53:02+03:00
---
Customizes the style of inline quotation marks.
- Use the `quotes` property to customize the characters used for the opening and closing quotes of a `<q>` element.
```html
<p>
<q>Do or do not, there is no try.</q> Yoda
</p>
```
```css
q {
quotes: "“" "”";
}
```