I am trying wrap my head around as to exactly what webkit means when it comes to styles. For example I have the following
div {
-webkit-transform: rotateY(60deg); /* Chrome, Safari, Opera */
-webkit-transform-style: preserve-3d; /* Chrome, Safari, Opera */
transform: rotateY(60deg);
transform-style: preserve-3d;
}
What is the purpose of attributes with "webkit", even if I remove them this still works fine on Chrome. If "webkit" is for Chrome, Safari, and Opera are the other tags for non-webkit like IE?