Day 49: layering entire style sheets

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
You can use @import to load entire style sheets into a cascade layer.@import url("path/to/the/styles.css") layer(layername); For example, you could load something like Bootstrap into a dedicated third-party layer. @layer third-party, base, components, utility; @import...