Page 85 - CSS
P. 85
div {
-webkit-transition: all 4s ease;
-moz-transition: all 4s ease;
-o-transition: all 4s ease;
transition: all 4s ease;
}
Transform
div {
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
Read Browser Support & Prefixes online: https://riptutorial.com/css/topic/1138/browser-support---
prefixes
https://riptutorial.com/ 63

