You are on page 1of 1

[title='heading'] {

color:red;
}
===================================================================

linear-gradient(angle, color-stop1, color-stop2, ...)

background: linear-gradient(90deg, red, yellow);

===================================================================
The translate3d() Function
-webkit-transform: translate3d(25px, 25px, 50px); /* Chrome, Safari, Opera
Moves the element from its current position to a new position along the X, Y and Z-
axis. This can be written as translate(tx, ty, tz). Percentage values are not
allowed for third translation-value parameter (i.e. tz).

You might also like