css Flashcards

1
Q

inline-flex

A

makes the container to be like that of its content

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

what browser is best for grid layout trouble shooting?

A

Fire fox bababababayyyyy

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

View bax svg

A

study this

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

svg stripping to minimize file size

A

title desc

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

svg g tags

A

grouping content like layers in illustrator

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

svg readymade shapes

A

path, rect, circle, ellipse, line, polyline, and polygon

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

best way to upload svgs?

A

object tags

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

clip-path

A

The clip-path property clips a region of an element that sets the visible and hidden parts of the element. Parts that are inside the region are shown, while those outside are hidden. While this property has many possible values, let’s get started with the keyword values

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

mask

A

The mask property hides a part or all of an image by masking it at specified coordinates. The value for mask can be many things, including an SVG or a gradient.

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

how do you blur a background image

A

background-filter Blur()

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

Timing transition key word ease

A

start slow, speed up, slow down.

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

Timing transition key word linear

A

Consistent animation change.

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

Timing transition key word ease in

A

start slow then seed up at the end

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

Timing transition key word ease out

A

Start fast then go slow at the end

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

Timing transition key word ease in out

A

same as ease but slower start

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

what are the transition properties

A

selector {
transition: property duration timing delay;
}

17
Q

what are the transform properties

A

transform: translate(x-axis, y-axis);
transform: scale(x-axis, y-axis);
transform: rotate(deg);
transform: skew(x-deg, y-deg);

18
Q

what are the different translate options

A

transform: translate() -moves an element on the 2D plane
transform: translate3d() -moves an element in 3D space
transform: translateX() -moves an element horizontally
transform: translateY() -moves an element vertically.
transform: translateZ() -moves an element along the z-axis

19
Q

what are the scale options

A

transform: scale() grows an element on the 2D plane
transform: scale3d() grows an element in 3D space
transform: scaleX() stretches an element horizontally
transform: scaleY() stretches an element vertically.
transform: scaleZ() stretches an element along the z-axis

20
Q

does transform stay in normal document flow?

A

Yaaaaaaaassssssssss

21
Q

what are the rotate options

A

transform: rotate() spins an element on the 2D plane
transform: rotate3d() spins an element in 3D space
transform: rotateX() spins an element horizontally
transform: rotateY() spins an element vertically.
transform: rotateZ() spins an element along the z-axis

22
Q

does the order of transformations or transitions matter?

A

yaaaaaaassssssss

23
Q

what does a css reset do?

A

Resets the css so that it renders the same on all browsers.