2020.08.01
Custom CSS for Firefox
Firefox allows users to apply user stylesheets to modify every single web page as necessary or even modify the UI of Firefox itself. Let's see how to do it!
A Beginner's Guide to SCSS
Basically, SCSS is the most popular CSS pre-processor now people use. It's just a more recent version of the original Sass syntax. All Sass/SCSS code compiles back to standard CSS so that the browsers can understand it. All browsers currently don't have direct support for SCSS or any other CSS pre-processor, nor does the standard CSS specification provide alternatives for similar features, not yet.
2019.11.07
Relative Units - CSS Fundamentals
In the web environment, the user can have their browser window set to any number of sizes, and the CSS has to apply to it. Also, users can resize the page after it's opened, and the CSS needs to adjust to new constrains. This means that the browser must calculate those when the page is rendered on-screen. Relative units are one of the tools CSS provides to work for the responsive design.
2019.11.06
Cascade - CSS Fundamentals
Let's begin with the cascade, the C in CSS. How it works and how to work with it practically.