Chalarangelo/30-seconds-of-code

View on GitHub
content/snippets/css/s/stylized-quotation-marks.md

Summary

Maintainability
Test Coverage
---
title: Stylized quotation marks
type: snippet
language: css
tags: [visual]
cover: coffee-phone-tray
dateModified: 2021-05-16
---

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: "“" "”";
}
```