Best Way to Learn CSS for Beginners

CSS can be a little daunting for beginners; as a beginner myself, I know! But don’t worry, there are plenty of ways to learn CSS. This blog post will explore some of the best ways to Learn CSS for beginners. So, whether you are just starting or looking for a refresher course, keep reading for […]
10 Most Important CSS Concepts for Beginners

A question you often ask as a beginner coder is how much is enough. How much of CSS should I know to feel confident with the language? This post is here to help by listing what I found to be the most important concepts to grasp in CSS. Just in case you are right at […]
What is a media query used for in CSS?

When I started learning CSS in January 2022, it wasn’t long before I came across media queries. Initially, using media queries to effectively create 3 different versions of my site, one for desktop, mobile, and tablet, was daunting. As soon as I understood how to use media queries, where to place them and most importantly, […]
The basics of CSS Selectors

One of the first things you will learn about CSS is the basic CSS syntax, and pretty much as soon as you learn the syntax, you will come across CSS selectors. CSS selectors are a powerful tool for styling your website. They are easy to learn and use, and they can be used with any […]
Measurement Units in CSS Explained for Beginners

If you have just started your coding journey or just started to learn CSS as I have, you may wonder why there are so many different measurement units in CSS. Any beginner would be right to get confused between pixels, REMs and EMs and not know when to use which unit. This article will help […]
CSS Box Model Explained for Beginners

If you’re new to coding, like I am, the box model is one of the most important things to understand in CSS. The CSS box model is a set of principles that govern how elements are laid out on a page. It’s important to understand how the box model works so that you can create […]
How To use Google Fonts in HTML and CSS

According to Google developer docs, “Applying a font is easy: just add a stylesheet link to your web page, then use the font in a CSS style.” As someone new to the word of coding, this simple instruction can seem confusing. This article is here to help you understand How to use Google fonts in […]
CSS Properties Cheat Sheet

This CSS Properties Cheat Sheet is the best cheat sheet for new coders as it breaks down the properties by category. Easy to find and easy to use! We have sorted the properties in alphabetical in order to make it even easier. CSS Background Properties background Sets a variety of background properties within one declaration. […]
What is the structure of CSS

When starting CSS, as I have recently, you may be wondering what the structure or format of CSS is. More experienced developers would refer to this as the syntax of a language, which refers to the rules that define a language. The basic syntax of CSS is made up of two elements, namely a selector, […]
What does cascading in CSS mean?

CSS is a styling or markup language that has become the cornerstone of web pages with HTML and JavaScript. So what does “cascading in CSS mean? Cascading in CSS comes from how style rules are applied to a specific element based on the inherent hierarchy built into the language, known as specificity. Styling rules in […]