π¨Sass: the style you want, the code you need
I added the course road map. If you are a developer or web designer, chances are you have heard about Sass at one time or another. Sass is just as easy to use as CSS but includes some addi...
I added the course road map. If you are a developer or web designer, chances are you have heard about Sass at one time or another. Sass is just as easy to use as CSS but includes some addi...
Introduction Asynchronous JavaScript operations have become a fundamental concept in modern web development. They allow us to execute tasks without blocking the main thread, resulting in a more res...
The Holy Grail Layout is a well-known CSS issue that has had a number of remedies throughout time. If youβre not aware of the background of the Holy Grail layout, this A List Apart article provides...
You can access the code from here
When I first started to develop my portfolio, I fetched GitHub Repos and ran into the issue of needing to present the repo data when clicking on the repo name precisely as seen in the image below. ...
We learnt how to nest Scss rules in the last post. Today, weβll go into more depth regarding nesting. In this post, we will cover:- Parent Selector and pseudo-classes Grouping and Nesting CS...
Our series is split into two main categories: SASS rules and SASS at-rules, if you recall the course mindmap from the sass syntax post. The one SASS rule we didnβt cover in the previous posts was P...
Git Workflow is a recipe or recommendation for how to use Git to accomplish work consistently and productively. The topmost workflows present nowadays are: Git flow GitHub flow GitLab flow...
In the prior post, we discussed the SSCS rules. We began with variables and demonstrated how they cannot be used as placeholders for property names, stating that interpolation was used in their pla...
In the previous post, we learned how to compile SCSS to CSS. Now we will learn how to write SCSS. You should first know that you can write SASS stylesheets with two syntaxes. SCSS Syntax SASS...