HTML/CSS Flashcards

1
Q

prefix to the experimental styles for WebKit (Safari and Chrome)

A
  • webkit-
    • *

* {
-webkit-transition: all 0.1s linear;
}

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

prefix to the experimental styles for Mozilla (Firefox)

A
  • moz-
    • *

* {
-moz-transition: all 0.1s linear
}

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

prefix to the experimental styles for Mircosoft (Internet Explorer and Edge)

A
  • ms-
    • *

* {
-ms-transition: all 0.1s linear
}

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