Skip to content

Commit e949e42

Browse files
committed
added tags in css docs
1 parent 2a5e7fb commit e949e42

21 files changed

+21
-0
lines changed

docs/css/basics/cascading-order.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: "The Cascade, Specificity, and Inheritance"
33
sidebar_label: "Cascade Order"
44
description: "Understand the three core principles (C-S-I) that determine which CSS rule wins when conflicts occur, making it the most fundamental concept in CSS."
55
keywords: [CSS Cascade, CSS Specificity, CSS Inheritance, Rule Conflict, Important rule, important, CodeHarborHub CSS]
6+
tags: [CSS Cascade, CSS Specificity, CSS Inheritance, Rule Conflict, Important rule, important]
67
---
78

89
You now know there are three ways to write CSS: Inline, Internal, and External. But what happens when you accidentally apply **two different styles** to the same element?

docs/css/basics/external.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: External Stylesheets
33
description: "Learn the industry-standard method of linking CSS using the link tag. Understand the crucial benefits of separation of concerns, caching, and scalability."
44
keywords: [CSS External Style, External CSS, link tag, best practice CSS, Frontend Development Scalability, CodeHarborHub CSS]
5+
tags: [CSS External Style, External CSS, link tag, best practice CSS, Frontend Development Scalability]
56
sidebar_label: External Styles
67
---
78

docs/css/basics/inline.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Inline Styles
33
description: "Learn how to apply CSS directly to HTML elements using the style attribute. Understand the advantages, disadvantages, and when to use inline styles."
44
keyword: [CSS Inline Style, HTML style attribute, CSS basics, Frontend Styling, Inline vs External CSS]
5+
tags: [CSS Inline Style, HTML style attribute, CSS basics, Frontend Styling, Inline vs External CSS]
56
sidebar_label: Inline Styles
67
---
78

docs/css/basics/internal.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Internal Stylesheets
33
description: "Learn how to use Internal Stylesheets with the style tag in the HTML head. Understand when to use this method and its role in the Cascade."
44
keyword: [CSS Internal Style, Embedded CSS, style tag, CSS basics, HTML head, CodeHarborHub CSS]
5+
tags: [CSS Internal Style, Embedded CSS, style tag, CSS basics, HTML head]
56
sidebar_label: Internal Styles
67
---
78

docs/css/introduction.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Introduction to CSS
33
description: "Learn the fundamentals of CSS (Cascading Style Sheets), what it is, why it’s essential for web design, and how it works alongside HTML and JavaScript."
44
keywords: [CSS, Cascading Style Sheets, Web Design, Frontend Development, HTML, JavaScript, Styling]
5+
tags: [CSS, Cascading Style Sheets, Web Design, Frontend Development, HTML, JavaScript, Styling]
56
sidebar_label: Introduction
67
image: /tutorial/img/tutorials/css/frontend-trinity-analogy.png
78
---

docs/css/selectors/attribute-selectors.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: Attribute Selectors
33
description: "Learn how to use Attribute Selectors to target elements based on the presence, exact value, or partial match of their HTML attributes, such as type, href, or target."
44
keywords: [CSS Attribute Selectors, Attribute presence, Attribute value, Substring matching, CSS Selectors, CodeHarborHub]
5+
tags: [CSS Attribute Selectors, Attribute presence, Attribute value, Substring matching, CSS Selectors]
56
sidebar_label: Attribute Selectors
67
---
78

docs/css/selectors/combinators/adjacent-sibling.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: The Adjacent Sibling Combinator
33
description: "Learn how to use the Adjacent Sibling Combinator (+) to select an element that immediately follows another element at the same level in the HTML structure."
44
keywords: [CSS Adjacent Sibling Combinator, Plus Selector, Immediate Follow, Sequential Styling, CSS Combinators, CodeHarborHub]
5+
tags: [CSS Adjacent Sibling Combinator, Plus Selector, Immediate Follow, Sequential Styling, CSS Combinators]
56
sidebar_label: Adjacent Sibling Combinator
67
---
78

docs/css/selectors/combinators/child.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: The Child Combinator
33
description: "Learn how to use the Child Combinator (>) to target elements that are only one level deep inside a parent, ensuring highly precise and immediate contextual styling."
44
keywords: [CSS Child Combinator, Greater Than Selector, Direct Child, Immediate Nesting, CSS Combinators, CodeHarborHub]
5+
tags: [CSS Child Combinator, Greater Than Selector, Direct Child, Immediate Nesting, CSS Combinators]
56
sidebar_label: Child Combinator
67
---
78

docs/css/selectors/combinators/descendant.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: The Descendant Combinator
33
description: "Learn how to use the Descendant Combinator (space) to target an element that is nested anywhere inside another specific element."
44
keywords: [CSS Descendant Combinator, Space Selector, Nested Elements, Contextual Styling, CSS Combinators, CodeHarborHub]
5+
tags: [CSS Descendant Combinator, Space Selector, Nested Elements, Contextual Styling, CSS Combinators]
56
sidebar_label: Descendant Combinator
67
---
78

docs/css/selectors/combinators/general-sibling.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
title: The General Sibling Combinator
33
description: "Learn how to use the General Sibling Combinator (~) to select all elements that follow a specific preceding element, as long as they share the same parent."
44
keywords: [CSS General Sibling Combinator, Tilde Selector, All Following Siblings, Sequential Styling, CSS Combinators, CodeHarborHub]
5+
tags: [CSS General Sibling Combinator, Tilde Selector, All Following Siblings, Sequential Styling, CSS Combinators]
56
sidebar_label: General Sibling Combinator
67
---
78

0 commit comments

Comments
 (0)