CSS Flashcards

1
Q

What are the names of the individual pieces of a CSS rule?

A

CSS Selector, Declaration Block, Key:Value Pairs which are separated by a colon. Key:Value pairs end with a semicolon

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In CSS, how do you select elements by their class attribute?

A

Using a period (.) before the class attribute value as a CSS Selector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In CSS, how do you select elements by their type?

A

Using the tag of the element as a CSS Selector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In CSS, how do you select an element by its id attribute?

A

Using a pound symbol (#) before the id attribute value as a CSS Selector

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Name three different types of values you can use to specify colors in CSS.

A

Name, Hexcode, RGB, RGBA

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What CSS properties make up the box model?

A

Border, Margin, Padding

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which CSS property pushes boxes away from each other?

A

Margin

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which CSS property add space between a box’s content and its border?

A

Padding

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a pseudo-class?

A

pseudo-class is a keyword added to a selector that specifies a special state of the selected element(s)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are CSS pseudo-classes useful for?

A

Pseudo-classes let you apply a style to an element in relation to external factors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Name two types of units that can be used to adjust font-size in CSS.

A

Px, rem, em, percentages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What CSS property controls the font used for the text inside an element?

A

font-family

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the default flex-direction of a flex container?

A

Horizontal or Row

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is the default flex-wrap of a flex container?

A

no-wrap

The flexbox items will remain on a single line, no matter what, and will eventually overflow if needed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Why do two div elements “vertically stack” on one another by default?

A

divs are block elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the default flex-direction of an element with display: flex?

A

row/horizontal

17
Q

What is the default value for the position property of HTML elements?

A

position: static

18
Q

How does setting position: relative on an element affect document flow?

A

position: relative does not affect document flow

19
Q

How does setting position: relative on an element affect where it appears on the page?

A

position: relative moves an element from where it would be for the normal flow, relative to it’s parent element

20
Q

How does setting position: absolute on an element affect document flow?

A

position: absolute does not affect document flow. Other elements act as if it isn’t there.

21
Q

How does setting position: absolute on an element affect where it appears on the page?

A

position: absolute moves an element in relation to its parent element

22
Q

How do you constrain an absolutely positioned element to a containing block?

A

Give the element a css property position with a non static value

23
Q

What are the four box offset properties?

A

Top, bottom, left, right

24
Q

What are the four components of “the Cascade”.

A

Source Order, Inheritance, Specificity, and !important

25
Q

What does the term “source order” mean with respect to CSS?

A

The order of which your css rulesets are written. The last ruleset will take priority

26
Q

How is it possible for the styles of an element to be applied to its children as well without an additional CSS rule?

A

Inheritance

27
Q

List the three selector types in order of increasing specificity.

A

Type Selectors, Class Selectors, to ID Selectors

28
Q

Why is using !important considered bad practice?

A

It makes debugging more difficult by breaking the natural cascading in your stylesheets