CSS Flashcards

1
Q

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

A

selector, declaration - property, value

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

.class-name {

}

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

element-name {

}

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
#id-name {
}
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

RGB Values: rgb(102,205,170)
Hex Codes: #66cdaa
Color Names: MediumAquaMarine

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

margin, border, padding, content

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

a keyword added to a selector that specifies a special state of the selected element(s).

Ex: hover

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 not only in relation to the content of the document tree, but also in relation to external factors

Ex: the history of the navigator (:visited, for example), the status of its content (like :checked on certain form elements), or the position of the mouse (like :hover, which lets you know if the mouse is over an element or not).

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

Name at least two units of type size in CSS.

A

Pixel, Percentages, ems

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

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

nowrap

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

they are block-level elements

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

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

A

position: static

17
Q

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

A

Does not affect position of surrounding elements; they stay in position they would be in normal flow.

18
Q

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

A

doesn’t move until offset properties set; offset moves from the position it would be in normal flow

19
Q

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

A

taken out of normal flow, doesn’t affect position of surrounding elements (ignores space it would have taken up / as if it wasn’t there).

20
Q

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

A

position element in relation to its containing element

moves as user scrolls on page

21
Q

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

A

Absolutely positioned elements position themselves within the first non-static ancestor they have. The containing block has css property =====
position: relative;

22
Q

What are the four box offset properties?

A

top, bottom, left, right

23
Q

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

A

Row

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 that your CSS rules are written in your stylesheet. The styling provided for an element last in your stylesheet is the styling that will ultimately take effect.

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 Ex: color

When no value for an inherited property has been specified on an element, the element gets the computed value of that property on its parent element.

27
Q

List the three selector types in order of increasing specificity.

A

“Less Specific” –type selectors (h1), class selectors (.class-name), id selectors (#id-name) – “More Specific

28
Q

Why is using ‘!important’ considered bad practice?

A

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

29
Q

What does the transform property do?

A

The transform CSS property lets you rotate, scale, skew, or translate an element.

30
Q

Give four examples of CSS transform functions.

A

rotate, scale, skew, translate

31
Q

The transition property is shorthand for which four CSS properties?

A

transition-property, transition-duration, transition-timing-function, and transition-delay.

32
Q

Give two examples of media features that you can query in an ‘@media’ rule.

A

width and height

33
Q

Which HTML meta tag is used in mobile-responsive web pages?

A

meta name=”viewport” content=”width=device-width, initial-scale=1”

34
Q

What is a breakpoint in responsive Web design?

A

The points at which a media query is introduced

EX: at certain width, layout changes

35
Q

What is the advantage of using a percentage (e.g. 50%) ‘width’ instead of a fixed (e.g. px) ‘width’ for a “column” class in a responsive layout?

A

Don’t need to know exact px size of screen; fluid design

Fixed width won’t change in response to user changing viewport size. Percentages will adjust according to changing viewport size.

36
Q

If you introduce CSS rules for a smaller ‘min-width’ after the styles for a larger ‘min-width’ in your style sheet, the CSS rules for the smaller ‘min-width’ will “win”. Why is that?

A

Source order. The last rule in the file will take priority in element styling.