To flip a image in CSS you can use the following snippet.
img { -moz-transform: scaleX(-1); -o-transform: scaleX(-1); -ms-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; }
To flip a image in CSS you can use the following snippet.
img { -moz-transform: scaleX(-1); -o-transform: scaleX(-1); -ms-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; }
To make a text blur in CSS you can use the following snippet.
.blurtext { color: transparent; text-shadow: 0 0 3px rgba(0, 0, 0, 0.6); font-size: 60px; -webkit-transition: text-shadow 2.0 ease-out; -o-transition: text-shadow 2.0 ease-out; -ms-transition: text-shadow 2.0 ease-out; -moz-transition: text-shadow 2.0 ease-out; transition: text-shadow 2.0 ease-out; }