CSS Flashcards

1
Q

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

A

type of selector, curly brace for the declaration block, property name, and value inside of it.

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

input[type=attribute 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

name of id {

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, hex codes, and color names.

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

Borders, margins, and paddings.

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. It is an invisible space around your box and this pushes other elements away from the box.

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

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

A

Padding. It is the space between the content of an element and the border of that same element.

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

What is a pseudo-class?

A

It provides a special state of the selected element to the specified selector.

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

It’s useful when you want to give action to a specified selector, such as styling links or responding to users.

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

Px (pixels), rem (root element).

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

The 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

Because they 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.

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

It doesn’t affect the document flow if there is no value for the property.

19
Q

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

A

It could be displaced visually by top, right, bottom, left offsets properties.

20
Q

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

A

No longer exists in the normal document flow. It has its own layer and separates it from everything else.

21
Q

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

A

It shows an isolated element that doesn’t interfere with other elements on the page.

22
Q

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

A

Put absolute position inside of relative position.

23
Q

What are the four box offset properties?

A

Top, right, bottom, left.

24
Q

What does the transform property do?

A

It allows the element to rotate, scale, skew or translate. It modifies the coordinate space of the CSS visual formatting model.

25
Q

Give four examples of CSS transform functions.

A

rotate(), scale(), translateX(), translateY().

26
Q

The transition property is shorthand for which four CSS properties?

A

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

27
Q

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

A

Width and height, color, hover.

28
Q

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

A

Meta viewport.

29
Q

What is a breakpoint in responsive Web design?

A

It is a point that the site content responds to provide the best possible layout to the user depending on their devices.

30
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

When the screen zooms in or out, the percentage width can be changed to the percentage width that fits the screen size, but the fixed width, such as pixels, cannot be changed.

31
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

Because of the source order of the CSS. The bottom order is more powerful.