CSS Tricks
Grids by example
https://gridbyexample.com/examples/
CSS Grid
https://thingsym.github.io/flexbox-grid-mixins/#Grid-System-Example
External links
a[href*="//"]:not([href*="yourwebsite.com"]) {
/* Apply style here */
}
6. Styling optional and required input elements
input:optional {
border: 1px solid black;
}
input:required {
border: 1px dashed red;
}
7. Comma-separated list with css
ul > li:not(:last-child):after {
content: “, “;
}
CSS Tricks including the dynamic vars
https://betterprogramming.pub/22-css-tricks-that-can-make-you-a-layout-ninja-452847fba639
No comments:
Post a Comment