Introduction to CSS

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

flashcard set

Earn XP

Description and Tags

Flashcards covering key vocabulary related to Cascading Style Sheets (CSS) and its syntax, properties, selectors, and methods.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

Cascading Style Sheets (CSS)

A W3C standard for describing the appearance of HTML elements.

2
New cards

CSS Syntax

The structure of writing CSS rules which includes selectors and declarations.

3
New cards

Selector

The part of a CSS rule that identifies which HTML elements will be affected by the declarations.

4
New cards

Property

A predefined attribute in CSS that specifies a characteristic of the selected element.

5
New cards

Inline Styles

CSS styles applied directly within an HTML element using the style attribute.

6
New cards

Embedded Style Sheets

CSS rules placed within the

7
New cards

External Style Sheets

CSS rules stored in a separate text file with a .css extension, linked to HTML documents.

8
New cards

Element Selector

A selector that targets every instance of a specific HTML element.

9
New cards

Class Selector

A selector that targets HTML elements with a specific class attribute, denoted by a period (.) followed by the class name.

10
New cards

ID Selector

A selector that targets a specific element by its id attribute, denoted by a hash (#) followed by the id name.

11
New cards

Font Property

CSS properties that define the font characteristics of text elements.

12
New cards

Color and Background Property

CSS properties related to the colors and backgrounds of elements.

13
New cards

Spacing Property

CSS properties that control the spacing around and within elements.

14
New cards

Layout Property

CSS properties that define how elements are positioned on a web page.

15
New cards

Animation Property

CSS properties that define animation effects on elements.

16
New cards

RGB Color Model

A method of defining colors using red, green, and blue values.

17
New cards

Hexadecimal Color Code

A method of specifying colors using a six-digit number indicating red, green, and blue values.

18
New cards

Viewport Units

CSS units (vw, vh) that are relative to the size of the viewport (browser window).