Didn’t know CSS could do that
· 2m ·

Summary:
-
CSS Capabilities Beyond Basic Styling:
- Discovered that CSS offers advanced features like
:has
andtext-wrap
, among others, which can significantly enhance web design capabilities.
- Discovered that CSS offers advanced features like
-
Order of Trying Out New Features:
- HTML: Start with HTML to structure content.
- CSS: Use CSS for styling and advanced features like
:has
selector. - JS: Incorporate JavaScript for dynamic behavior and interactivity.
-
Advanced CSS Selectors:
-
:has
Selector:-
Allows selecting an element based on its state or the presence of specific children. Examples:
element:has(.child) { } element:has(> .direct-child) { } element:has(:state) { } element:has(:state) .child { }
-
Supports boolean logic:
element:has(:not(:state)) { } element:has(.logical, .or) { } element:has(.logical):has(.and) { }
-
❗ Feature Detection:
@supports selector(figure:has(caption)) { figure:has(caption) { // define stuff } }
-
⚠️ Caveats:
- Not forgiving; use
:where
for more lenient selection. - Takes the highest specificity of argument selectors.
- Keep selectors as specific as possible to avoid performance issues.
- Not forgiving; use
-
:range
Selector: -
Utilizes
:nth-child(n + B)
and:nth(-n + B)
to count elements based on specific conditions. Example::nth-child(An + B of .selector) { }
-
Can also use division to count with
An
and:last-child
.
-
-
-
Text Wrapping Enhancements:
-
Typographically Accurate Text Wrapping:
text-wrap: balance;
: Aligns line ends to maintain a rectangular shape.text-wrap: pretty;
: Avoids single-word orphans in the last line of paragraphs.
-
-
Scroll-Driven Animations:
- Explore scroll-driven animations using resources like scroll-driven-animations.style (best viewed in Chrome).
- How to implement:
- Remove time component from animation.
- Make easing linear.
- Add
animation-timeline: scroll(block root);
.
-
❗ Scroll Direction Detection:
- Check out Pecus’s CodePen for examples.

Resources:
-
Baseline Project:
- Use MDN CanIUse and web.dev to check feature support.
-
Additional Resources:
ℹ️ This notes page covers new CSS features and provides guidance on how to implement them effectively, along with important considerations for performance and browser compatibility.