search ]

Posts about: CSS

Discover the power of CSS in web design with our comprehensive guides. From the basics of styling elements to advanced techniques for creating responsive layouts, this category covers all you need to enhance your website’s look and feel. Dive into tips, tricks, and best practices to make your CSS work for you, whether you’re building your first page or fine-tuning a complex layout

As someone who manages a website that delivers content in both left-to-right and right-to-left languages, I can’t express how excited I was when I discovered CSS Logical Properties. They have completely transformed how I approach layout design, especially when it [...]

Cascading Style Sheets (CSS) is the backbone of web design, enabling developers to create visually engaging websites. From typography and colors to complex layouts and animations, CSS controls it all. This comprehensive tutorial will guide you through the essential concepts [...]

The :has pseudo-class in CSS is a powerful selector introduced in CSS Selectors Level 4. This property allows developers to apply styles to an element based on the presence of its descendants or related elements, effectively enabling “parent” selectors, which [...]

The text-shadow feature in CSS adds a shadow to text. It takes a list of shadows separated by commas, which are added to the text and the decoration of that text. Each shadow is described by a combination of X [...]

One aspect in which websites lag behind native applications is the smooth user experience. The perception of a smooth experience largely comes from the user interface’s responsiveness to user interactions, with the action of scrolling content being a crucial part [...]

clip-path is a very interesting CSS property that allows you to “clip” a certain part of elements such as SVG, images, and HTML. The property creates a shape that determines which part of the element will be visible. The part [...]

I am sure you will find many methods and sources showing how to create a responsive table, some are good and some less so. Among these methods, you will find sophisticated tables built using CSS Grid, and even very simple [...]

The ::marker pseudo-element is a feature in CSS that enables you to style the markers of list items. Whether you want to customize the appearance of bullets in an unordered list or the numbering in an ordered list, ::marker gives [...]

Designing the scrollbars of the browser has become popular lately, and I encounter many websites styling it differently, fitting their overall design and branding. There are several ways to design these scrollbars, and in this post, we’ll see how to [...]

Among the various features CSS offers, the repeat function stands out as a valuable tool for efficiently managing repetitive patterns in layouts and design elements.