Zainab JINARIbenizcode.hashnode.dev·Sep 26, 2024Understanding CSS Selectors: A Beginner's Guide (Part 2)Table of Contents: Introduction > Child Combinator ~ Subsequent sibling combinator + Next Sibling Combinator Conclusion Introduction: In part 2 of the series, we will take a break from learning other types of selectors and dive deep into how...DiscussCSS
dheeraj korangagyannbaato.hashnode.dev·Sep 22, 2024Pseudo-elements in CSSCSS pseudo-elements are used to style specific parts of an element's content, such as the first letter, the first line, or the part of the text a user selects. Let's explore the pseudo-elements ::first-letter, ::first-line, and ::selection. 1. Pseudo...DiscussCSS for BegineersCSS
Michael Baisdenmikesselftaughtbolg.hashnode.dev·Sep 20, 2024The Basics To CSSIntroduction to CSS Now that I've covered HTML, it's time to talk about CSS. Cascading Style Sheets (CSS) is a powerful language used to enhance the presentation of HTML documents. As I mentioned, CSS is used to design and style webpages. CSS dictate...DiscussMy self-taught journey to Programing and the technologies!CSS
dheeraj korangagyannbaato.hashnode.dev·Sep 19, 2024Descendent and Combinator in CSSIn CSS, combinators and attribute selectors are used to select elements based on their relationship to other elements or attributes. Let’s explore descendant selectors, sibling combinators, child combinators, and attribute selectors. 1. Descendant Se...DiscussCSS for BegineersCSS
dheeraj korangagyannbaato.hashnode.dev·Sep 19, 2024Selector in CSSA CSS selector is a string that selects one or more HTML elements based on attributes like name, class, ID, or other properties. They are essential for determining which elements should be styled and how. The types of CSS selectors include the univer...DiscussCSS for BegineersCSS
Anandkumaranandpak.hashnode.dev·Sep 12, 2024How to Manage Locators and Selectors in Playwright🎭 Master the art of web automation with Playwright, one locator at a time! Locators and selectors are crucial when automating web interactions using Playwright. They help identify and interact with elements on a webpage. In this blog, I'll guide you...DiscussGetbytestid
Turanya Sharmaturanyasharma.hashnode.dev·Sep 1, 2024Understanding CSS Specificity and InheritanceWhen multiple CSS rules conflict, the browser determines which rule to apply based on a priority system. This system is known as the cascade, and it consists of four main factors: Position: Rules defined later in the stylesheet generally have higher...DiscussCSS Inheritance
David Nguyeneplus.dev·Aug 2, 2024Module quiz: Interactive CSSWhich of the following describes the CSS selector [href~="dog"] ? Select all elements with the href attribute where the value starts with the word dog Select all elements with the href attribute where the value ends with the word dog Select all el...Discuss·101 readsFrontend DeveloperModule quiz: Interactive CSS
Rupesh Kumarrupeshmunday.hashnode.dev·Jul 2, 2024CSS selectorsLayman Terms Let's take an example of painting a house. If you want to paint the house you select different colors and styles for different rooms, cielings and furniture.For e.g. all walls of drawing room could be same but in bedroom the colour of wa...Discuss#HTMLandCSS
Syed Aquib Alihadetan.hashnode.dev·Jun 3, 2024CSS, Priorities, Selectors and UnitsCSS (Cascading Style Sheets) CSS is a stylesheet language used to describe the presentation of a document written in HTML. CSS defines how elements should be displayed on screen, paper, in speech, or on other media. It allows web developers to separa...DiscussCSS