Skip to content

Commit d32f06d

Browse files
authored
chore(curriculum): rm vids from what is css lectures (freeCodeCamp#61577)
1 parent 49d30f5 commit d32f06d

File tree

10 files changed

+12
-82
lines changed

10 files changed

+12
-82
lines changed

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672aa5e1f8b935577acfb2b9.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672aa5e1f8b935577acfb2b9
33
title: What Is CSS, and What Is Its Role on the Web?
4-
challengeType: 11
5-
videoId: yqcOCDoE29w
4+
challengeType: 19
65
dashedName: what-is-css
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What is CSS, and what is its role on the web?
16-
1710
CSS, which stands for Cascading Style Sheets, is a crucial component of modern web development. It's a markup language used to apply styles for HTML.
1811

1912
In simpler terms, if HTML is the structure of a web page, CSS is what makes it look good.

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acbbe2891564c4e316164.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acbbe2891564c4e316164
33
title: What Is the Basic Anatomy of a CSS Rule?
4-
challengeType: 11
5-
videoId: s4rjwX3zWCs
4+
challengeType: 19
65
dashedName: what-is-the-basic-anatomy-of-a-css-rule
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What is the basic anatomy of a CSS rule?
16-
1710
CSS is responsible for the styles of a web page. All of these styles are made up of various CSS rules.
1811

1912
A CSS rule is made up of two main parts: a **selector** and a **declaration** block.

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acbce8163374c903253c9.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acbce8163374c903253c9
33
title: What Is the Meta Viewport Element Used For?
4-
challengeType: 11
5-
videoId: 8X647U15ZFo
4+
challengeType: 19
65
dashedName: what-is-the-meta-viewport-element-used-for
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What is the meta viewport element used for?
16-
1710
The meta viewport element is a crucial component in responsive web design.
1811

1912
It's a special HTML meta element that gives the browser instructions on how to control the page's dimensions and scaling on different devices, particularly on mobile phones and tablets.

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acbdd06b44c4cd3bf8713.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acbdd06b44c4cd3bf8713
33
title: What Are Some Default Browser Styles Applied to HTML?
4-
challengeType: 11
5-
videoId: LWUeF0B-1g4
4+
challengeType: 19
65
dashedName: what-are-some-default-browser-styles-applied-to-html
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What are some default browser styles applied to HTML?
16-
1710
When you start working with HTML and CSS, you'll notice that some styles are applied to your web pages even before you write any CSS. These styles are called "default browser styles" or "user-agent styles".
1811

1912
These default browser styles provide basic formatting to ensure that HTML elements are displayed in a readable way across all browsers.
@@ -110,7 +103,7 @@ In the above code example, we are using an unordered list and an ordered list. B
110103

111104
For all of these examples, you saw how the browser applied default spacing, varying font sizes, and weights to these HTML elements.
112105

113-
In later lecture videos, you will learn how to reset some of these default styles using a CSS reset.
106+
In later lectures, you will learn how to reset some of these default styles using a CSS reset.
114107

115108
# --questions--
116109

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acbf7490c054d213a8c1f.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acbf7490c054d213a8c1f
33
title: What Are Inline, Internal, and External CSS, and When Should You Use Each One?
4-
challengeType: 11
5-
videoId: BmzjTr_bnSs
4+
challengeType: 19
65
dashedName: what-are-inline-internal-and-external-css
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What are inline, internal, and external CSS, and when should you use each one?
16-
1710
CSS can be applied to a webpage in three main ways: inline, internal, or external.
1811

1912
Each method has its own use case, advantages, and limitations, and knowing when to use each one is essential for writing clean, efficient, and maintainable code.
@@ -74,7 +67,7 @@ Here's the HTML part of our code example:
7467
</body>
7568
```
7669

77-
In an earlier lecture video, you learned that the `link` element has a `rel` attribute that specifies the relationship between the current document and the linked resource, such as linking to a stylesheet or an external resource.
70+
In an earlier lecture, you learned that the `link` element has a `rel` attribute that specifies the relationship between the current document and the linked resource, such as linking to a stylesheet or an external resource.
7871

7972
On the other hand, the `href` attribute specifies the URL of the linked resource, indicating where the resource should be retrieved from.
8073

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acc03c257524d6a5151e8.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acc03c257524d6a5151e8
33
title: How Do Width and Height Work?
4-
challengeType: 11
5-
videoId: IFVdOw40EK0
4+
challengeType: 19
65
dashedName: how-do-width-and-height-work
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
How do width and height work?
16-
1710
In CSS, the `width` and `height` properties are used to control the dimensions of elements on a webpage.
1811

1912
These properties can be defined in different units such as pixels (`px`), percentages (`%`), viewport units (`vw`, `vh`), and more.

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acc100d59d24da7b4e09c.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acc100d59d24da7b4e09c
33
title: What Are the Different Types of CSS Combinators?
4-
challengeType: 11
5-
videoId: fk16FfT6jpU
4+
challengeType: 19
65
dashedName: what-are-the-different-types-of-css-combinators
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What are the different types of CSS combinators?
16-
1710
CSS combinators are used to define the relationship between selectors in CSS. They help in selecting elements based on their relationship to other elements, which allows for more precise and efficient styling.
1811

1912
We will discuss some primary CSS combinators and their use cases, starting with the descendant combinator.

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acc1e24c1e54df5ad89bd.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acc1e24c1e54df5ad89bd
33
title: What Is the Difference Between Inline and Block-Level Elements in CSS?
4-
challengeType: 11
5-
videoId: u4OnJrEwfY0
4+
challengeType: 19
65
dashedName: what-is-the-difference-between-inline-and-block-level-elements-in-css
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What is the difference between inline and block-level elements?
16-
1710
In HTML and CSS, elements are classified as either **inline elements** or **block-level elements**, and this classification dictates how they behave in the document layout.
1811

1912
Understanding this difference is crucial for controlling how your content is displayed on a webpage.

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acc3f6f3e3c4e31ec3e12.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acc3f6f3e3c4e31ec3e12
33
title: How Does Inline-Block Work, and How Does It Differ from Inline and Block Elements?
4-
challengeType: 11
5-
videoId: PFQnVbZvZJY
4+
challengeType: 19
65
dashedName: how-does-inline-block-work
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
How does `inline-block` work, and how does it differ from inline and block elements?
16-
1710
When working with CSS, you often encounter three different types of display behaviors for elements: `inline`, `block`, and `inline-block`.
1811

1912
Each of these properties affects how elements are positioned and how they interact with other elements on the page.

curriculum/challenges/english/25-front-end-development/lecture-what-is-css/672acc538e6ef24e9dd3c94f.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
---
22
id: 672acc538e6ef24e9dd3c94f
33
title: What Are Margins and Padding, and How Do They Work?
4-
challengeType: 11
5-
videoId: Y3kOn6bRWRQ
4+
challengeType: 19
65
dashedName: what-are-margins-and-padding
76
---
87

98
# --description--
109

11-
Watch the video or read the transcript and answer the questions below.
12-
13-
# --transcript--
14-
15-
What are margins and padding, and how do they work?
16-
1710
Margin and padding are essential properties in CSS for creating well-structured, readable, and visually appealing web pages.
1811

1912
Margins control the space outside an element, helping to separate it from other elements and define the layout structure, while padding controls the space inside an element, improving content readability and aesthetic appeal.

0 commit comments

Comments
 (0)