CSS3 Flashcards

1
Q

hsl(arg1, arg2, arg3)

A

hue, saturation, and lightness

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

repeating-linear-gradient(deg, color px, color px, color px)

A

causes a color shift from one side of a screen to another

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

transform: scale(num)

A

transforms an element to the set number in scale

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

transform: skewX(deg)

A

skews the select element at a certain number of degrees along it’s X axis

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

transform: skewY(deg)

A

skews the select element at a certain number of degrees along it’s Y axis

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

box-shadow(offset x, offset y, blur-radius, spread radius, blue)

A

sets the box shadow, along with the element’s orientation, color, and spread.

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

::after & ::before

A

pseudo elements that are tacked on to add extra details to an element before and after

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

@keyframes

A

controls what happens during an animation

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

animation-name

A

sets the name of the animation, which is later used by @keyframes to tell CSS which rules go with which animations.

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

animation-duration

A

sets the amount of time an animation runs for

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

animation-fill-mode

A

specifies the style applied to an element when the animation has finished.

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

animation-iteration-count

A

control how many times you would like to loop through the animation.

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

animation-timing-function

A

change the speed of an animation over its duration. Can include a cubic bezier function to fine tune the animation

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

@media

A

consist of a media type, and if that media type matches the type of device the document is displayed on, the styles are applied. You can have as many selectors and styles inside your media query as you want.

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

Viewport units

A
  • vw (viewport width): 10vw would be 10% of the viewport’s width.
  • vh (viewport height): 3vh would be 3% of the viewport’s height.
  • vmin (viewport minimum): 70vmin would be 70% of the viewport’s smaller dimension (height or width).
  • vmax (viewport maximum): 100vmax would be 100% of the viewport’s bigger dimension (height or width).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

display: grid

A

Much like flexbox, a grid orientation system for organizing elements on a page.

17
Q

grid-template-columns:

A

creates columns of specified pixel length

18
Q

grid-template-rows

A

creates rows of a specified pixel length

19
Q

gird-column-gap && grid-row-gap

A

creates a gap with the specified pixel spacing

20
Q

justify-items

A

aligns all items horizontally

21
Q

align-items

A

aligns all items vertically