HTML/CSS Flashcards
1
Q
prefix to the experimental styles for WebKit (Safari and Chrome)
A
- webkit-
- *
* {
-webkit-transition: all 0.1s linear;
}
2
Q
prefix to the experimental styles for Mozilla (Firefox)
A
- moz-
- *
* {
-moz-transition: all 0.1s linear
}
3
Q
prefix to the experimental styles for Mircosoft (Internet Explorer and Edge)
A
- ms-
- *
* {
-ms-transition: all 0.1s linear
}
4
Q
A