mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 10:17:42 -04:00
99 lines
1.2 KiB
Markdown
99 lines
1.2 KiB
Markdown
|
# at-rule-name-space-after
|
||
|
|
||
|
Require a single space after at-rule names.
|
||
|
|
||
|
```css
|
||
|
@media (max-width: 600px) {}
|
||
|
/** ↑
|
||
|
* The space after at-rule names */
|
||
|
```
|
||
|
|
||
|
## Options
|
||
|
|
||
|
`string`: `"always"|"always-single-line"`
|
||
|
|
||
|
### `"always"`
|
||
|
|
||
|
There *must always* be a single space after at-rule names.
|
||
|
|
||
|
The following patterns are considered warnings:
|
||
|
|
||
|
```css
|
||
|
@charset"UTF-8";
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media(min-width: 700px) {}
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media (min-width: 700px) {}
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media
|
||
|
(min-width: 700px) {}
|
||
|
```
|
||
|
|
||
|
The following patterns are *not* considered warnings:
|
||
|
|
||
|
```css
|
||
|
@charset "UTF-8";
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@import url("x.css");
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media (min-width: 700px) {}
|
||
|
```
|
||
|
|
||
|
### `"always-single-line"`
|
||
|
|
||
|
There *must always* be a single space after at-rule names in single-line declaration blocks.
|
||
|
|
||
|
The following patterns are considered warnings:
|
||
|
|
||
|
```css
|
||
|
@charset"UTF-8";
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media(min-width: 700px) {}
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media (min-width: 700px) {}
|
||
|
```
|
||
|
|
||
|
The following patterns are *not* considered warnings:
|
||
|
|
||
|
```css
|
||
|
@charset "UTF-8";
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@import url("x.css");
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media (min-width: 700px) {}
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media
|
||
|
(min-width: 700px) {}
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media(min-width: 700px) and
|
||
|
(orientation: portrait) {}
|
||
|
```
|
||
|
|
||
|
```css
|
||
|
@media
|
||
|
(min-width: 700px) and
|
||
|
(orientation: portrait) {}
|
||
|
```
|