Prefixing

In this lesson, we'll learn how to setup autoprefixing.

We'll cover the following...

Let’s now move on to adding prefixing into our build.

Recall that in CSS you’ll often need to prefix your code in order to ensure cross-browser compatibility. Like in the following example:

.myClass {
	-webkit-transition: all 10s linear;
	-moz-transition: all 10s linear;
	-ms-transition: all 10s linear;
	-o-transition: all 10s linear;
	transition: all 10s linear;
}

You could do this manually, or use a tool like Autoprefixer, which ...