[css/en] add more css3 features (#4907)

This commit is contained in:
Th3G33k 2024-05-17 10:10:02 -10:00 committed by GitHub
parent ab75eeff40
commit 08c1c2e5d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -69,6 +69,9 @@ div { }
/* or ends with a value (CSS 3) */
[attr$='ue'] { font-size:smaller; }
/* or contains a value (CSS 3) */
[attr*='foo'] { }
/* or contains a value in a space-separated list */
[otherAttr~='foo'] { }
[otherAttr~='bar'] { }
@ -125,6 +128,9 @@ selector:first-child {}
/* any element that is the last child of its parent */
selector:last-child {}
/* Select the nth child of selector parent (CSS 3) */
selector:nth-child(n) { }
/* Just like pseudo classes, pseudo elements allow you to style certain parts of
a document */
@ -144,6 +150,12 @@ selector::after {}
in the group */
selector1, selector2 { }
/* Select elements that do not have a certain state (CSS 3) */
/* Here, we select div with no id attribute. */
div:not([id]) {
background-color: red;
}
/* ####################
## PROPERTIES
#################### */
@ -196,6 +208,41 @@ selector {
/* if the first one is not found, the browser uses the next, and so on */
font-family: "Courier New", Trebuchet, Arial, sans-serif;
}
/* Custom CSS properties using variables (CSS 3) */
:root {
--main-bg-color: whitesmoke;
}
body {
background-color: var(--main-bg-color)
}
/* Perfom a calculation (CSS 3) */
body {
width: calc(100vw - 100px)
}
/* Nest style rule inside another (CSS 3) */
.main {
.bgred { /* same as: .main .bgred { } */
background: red;
}
& .bggreen { /* same as: .main .bggreen { } */
background: green;
}
&.bgblue { /* (without space) same as: .main.bgblue { } */
background: blue;
}
}
/* Design responsive layout using flexbox (CSS 3) */
.container {
display: flex;
flex-direction: row; /* in which direction stack the flex items */
flex-wrap: wrap; /* whether or not flex items should wrap */
justify-content: center; /* how to align flex items horizontally */
align-items: center; /* how to align flex items vertically */
}
```
## Usage