Update
This commit is contained in:
parent
4820503a33
commit
1b6f6bb36a
98
cssnext.md
98
cssnext.md
|
@ -3,16 +3,6 @@ title: cssnext
|
||||||
category: JavaScript libraries
|
category: JavaScript libraries
|
||||||
---
|
---
|
||||||
|
|
||||||
## Nesting
|
|
||||||
|
|
||||||
```css
|
|
||||||
.class-name {
|
|
||||||
& .nesting { ... } // direct nesting starts with &
|
|
||||||
@nest span & { ... } // complex nesting
|
|
||||||
@media (min-width: 30em) { ... }
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Variables
|
## Variables
|
||||||
|
|
||||||
```css
|
```css
|
||||||
|
@ -26,7 +16,7 @@ body {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Colors
|
### Colors
|
||||||
|
|
||||||
Also see [colorme.io](http://colorme.io/).
|
Also see [colorme.io](http://colorme.io/).
|
||||||
|
|
||||||
|
@ -55,7 +45,7 @@ a {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Mixins
|
### Mixins
|
||||||
|
|
||||||
```css
|
```css
|
||||||
:root {
|
:root {
|
||||||
|
@ -71,20 +61,20 @@ a {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Custom media queries
|
Selectors
|
||||||
|
---------
|
||||||
|
|
||||||
|
### Nesting
|
||||||
|
|
||||||
```css
|
```css
|
||||||
@custom-media --viewport-medium (width <= 50rem);
|
.class-name {
|
||||||
@media (--viewport-medium) { ... }
|
& .nesting { ... } // direct nesting starts with &
|
||||||
|
@nest span & { ... } // complex nesting
|
||||||
|
@media (min-width: 30em) { ... }
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Media query ranges
|
### Custom selectors
|
||||||
|
|
||||||
```css
|
|
||||||
@media (width >= 500px) { ... } /* (min-width: 500px) */
|
|
||||||
```
|
|
||||||
|
|
||||||
## Custom selectors
|
|
||||||
|
|
||||||
```css
|
```css
|
||||||
@custom-selector :--button button, input[type='submit'], input[type='button'];
|
@custom-selector :--button button, input[type='submit'], input[type='button'];
|
||||||
|
@ -94,7 +84,36 @@ a {
|
||||||
:--button:--enter { ... }
|
:--button:--enter { ... }
|
||||||
```
|
```
|
||||||
|
|
||||||
## Property fallbacks
|
### Future selectors
|
||||||
|
|
||||||
|
```css
|
||||||
|
:any-link { ... } /* :link, :visited */
|
||||||
|
p:matches(.a, .b) { ... } /* p.a, p.b */
|
||||||
|
p:not(.a, .b) { ... } /* p:not(.a), p:not(.b) */
|
||||||
|
a::before { ... } /* a:before -- for IE compatibility */
|
||||||
|
[frame=hsides i] { ... } /* [frame=hsides] -- but case insensitive */
|
||||||
|
```
|
||||||
|
|
||||||
|
Media queries
|
||||||
|
-------------
|
||||||
|
|
||||||
|
### Custom media queries
|
||||||
|
|
||||||
|
```css
|
||||||
|
@custom-media --viewport-medium (width <= 50rem);
|
||||||
|
@media (--viewport-medium) { ... }
|
||||||
|
```
|
||||||
|
|
||||||
|
### Media query ranges
|
||||||
|
|
||||||
|
```css
|
||||||
|
@media (width >= 500px) { ... } /* (min-width: 500px) */
|
||||||
|
```
|
||||||
|
|
||||||
|
Properties
|
||||||
|
----------
|
||||||
|
|
||||||
|
### Property fallbacks
|
||||||
|
|
||||||
```css
|
```css
|
||||||
/* font-feature-settings fallback */
|
/* font-feature-settings fallback */
|
||||||
|
@ -105,27 +124,7 @@ div { filter: blur(4px); } /* svg filter fallback */
|
||||||
div { overflow-wrap: break-word; } /* word-wrap fallback */
|
div { overflow-wrap: break-word; } /* word-wrap fallback */
|
||||||
```
|
```
|
||||||
|
|
||||||
## Reset
|
### Autoprefixing
|
||||||
|
|
||||||
```css
|
|
||||||
div {
|
|
||||||
all: initial;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Sets animation, background, margin, padding, and so on */
|
|
||||||
```
|
|
||||||
|
|
||||||
## Future classes
|
|
||||||
|
|
||||||
```css
|
|
||||||
:any-link { ... } /* :link, :visited */
|
|
||||||
p:matches(.a, .b) { ... } /* p.a, p.b */
|
|
||||||
p:not(.a, .b) { ... } /* p:not(.a), p:not(.b) */
|
|
||||||
a::before { ... } /* a:before -- for IE compatibility */
|
|
||||||
[frame=hsides i] { ... } /* [frame=hsides] -- but case insensitive */
|
|
||||||
```
|
|
||||||
|
|
||||||
## Autoprefixing
|
|
||||||
|
|
||||||
```css
|
```css
|
||||||
div {
|
div {
|
||||||
|
@ -139,6 +138,17 @@ div {
|
||||||
*/
|
*/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Reset
|
||||||
|
|
||||||
|
```css
|
||||||
|
div {
|
||||||
|
all: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Sets animation, background, margin, padding, and so on */
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
||||||
Based on cssnext 2.9.0. See: <http://cssnext.io/features/>
|
Based on cssnext 2.9.0. See: <http://cssnext.io/features/>
|
||||||
|
|
Loading…
Reference in New Issue