Select Page

Category: CSS

Articles on CSS tips and tricks

How to create a SCSS to CSS compiling setup?

How to create a SCSS to CSS compiling setup?

Hi, I have created a very nice and minimal working scss/sass to css compiling setup on my local and i am sharing the steps to do it with you. Step 1 – install node js from here – https://nodejs.org/en/ Step 2 – initialize package.json file with...
Why should I use Sass or SCSS? Revision:

Why should I use Sass or SCSS? Revision:

CSS is awesome on its own but gets larger, more complex, and harder to maintain with time in large and complex projects. Sass or SCSS features like nesting, mixins, and inheritance helps in maintainable CSS for large projects. Here is a quick glimpse of what Sass or...
Why there is no explicit property for mouse leave in CSS?

Why there is no explicit property for mouse leave in CSS?

I had a situation where I had to animate an element only during mouse leave through CSS only. I tried everything but was not successful. I searched over the internet and got nothing other than using another class through JavaScript or jQuery during mouse leave action....