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...CSS for BegineersCSS
dheeraj korangagyannbaato.hashnode.dev·Sep 19, 2024Pseudo-classes in CSSIn CSS, pseudo-classes are keywords that can be added to selectors to target elements in a specific state, such as when they are being hovered over, clicked, or checked. Let’s explore some common pseudo-classes: :hover, :active, :checked, and :nth-of...CSS for BegineersCSS
Namya Shahbigsmoke.hashnode.dev·Dec 23, 2023Basics CSS Questions Part 1What does CSS stand for? Cascading Style Sheets. What is the purpose of CSS? It's used to style the layout and appearance of web pages. How do you link an external CSS file to an HTML document? Using the <link> tag within the HTML <head> secti...css purpose
Dhruv sharmadhruvsharma28.hashnode.dev·Jan 1, 2023Css selector##what is css selector? it is Way where we select a Html element and which we want to design. ##types of major Css selector universal selector individual selector and selector (chained) class and id selector combined selector inside an element ...1 like·33 readsCSS
Jude Odoforijudet.hashnode.dev·Oct 11, 2022How to prevent ::after pseudo-element from wrapping to the next lineWe all make mistakes, that's cool! But not learning from our mistakes is a uge disaster. You never stop learning. If you have a teacher, you never stop being a student. Elisabeth Rohm "Experience is simply the name we give our mistakes." - Oscar Wil...180 readscss pseudo-classes
Anurag Katiyaranurag1996.hashnode.dev·Jul 22, 2022"Before & After" pseudo selectors in CSSWhat these "::before & ::after" do for us ? Css makes our coding life easy if we know that how actually it works. People often get confuse about "before" and "after" pseudo selectors in css. "before" and "after" pseudo-elements allow you to insert ...68 readspseudo elements
Gautam Nathgautamnath.hashnode.dev·Jul 22, 2022CSS is AwesomeMany of us love to solve real-world problems either by finding the simplest solution to a complex problem or by reaching a million people over the internet and interacting with them. What attracts the most when you meet a person - well most of us wou...CSS
saurabh suryavanshisaurabhsuryavanshi.hashnode.dev·Jul 22, 2022CSS Pseudo-SelectorsSelectors are an integral part of CSS. They help in targeting HTML elements when not using inline CSS. Pseudo-Selectors can be called pseudo-elements or pseudo-classes depending on the job they are performing. Pseudo-elements Pseudo-elements are gen...40 readsCSS
Chandrakala Pchandrakalap.hashnode.dev·Jul 20, 2022CSS SelectorsCSS Selectors In CSS, selectors are patterns used to select the element(s) you want to style. Types for Selectors Simple Selectors It select the elements based on name, id, class CSS Element Selector The element selector selects HTML elements based o...205 readsCSS
Abhishek Bhuyanabhilovecode.hashnode.dev·Jul 18, 2022CSS || Pseudo-classesCSS pseudo-classes are used to add special effects to some selectors. Sometimes it combines with a CSS Selector to add more effect to existing elements. For Example, when You Need to change the style of an element when the user moves the pointer into...264 readsCSS