The back-end An example use of the SCSS percent operator January 18, 2024 by Purab Datta No Comments Here’s a handy SCSS online compilation of CSS: jsrun.net/app/scss Before: %fo{ color:red; } .two { @extend %fo; font-size: 10px; } Copy the code After: .two { color: red; } .two { font-size: 10px; }}Copy the code