search ]

Category: Development | Page 16

JavaScript Objects for Beginners

JavaScript is built on a simple paradigm based on objects. An object is a collection of properties, where a property is an association between a key and a value. Objects in JavaScript can be compared to objects in other programming [...]

CSS Grid Fr Unit Explained

CSS Grid introduced a new measurement unit to the world. It's essentially a new type of flexible unit called the Fr unit. The meaning of Fr is Fractional Unit, where 1fr represents a fraction of the available space.

The Complete Guide to Using Flexbox

In this guide, we will explain in detail how to use Flexbox and the justification and alignment properties it offers (among other things) to create grids and various layouts.

Loading Fonts with @font-face

The @font-face Rule in CSS enables the usage of customized fonts (Custom Fonts) for the text on your website. These fonts can be loaded from an external server using the "url()" function or...