Files
30-seconds-of-code/snippets/stylized-quotation-marks.md
2021-05-16 19:53:02 +03:00

21 lines
340 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
tags: visual,beginner
---
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: "“" "”";
}
```