fix
Dave Ellis
This is a great CSS tool, particularly useful for 3D transforms
Proceed(8)
Thanks for your like.
You've done it, haven't you?
{"sid":"BAJ","rid":0,"page":"code","page_params":[],"username":""}
Skip
Next

We'll add only required prefixes
for browsers you gonna choose,
based on data from caniuse.com
4+
4+
9+
10.5+
4+
5.0+
2.1+
7+
Hide default rules
Copy to clipboard
HTML
<div class="enjoy-css">Enjoy</div>
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: none;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  font: normal 18px/2 Impact, Charcoal, sans-serif;
  color: rgba(255,255,255,1);
  text-indent: 17px;
  -o-text-overflow: clip;
  text-overflow: clip;
  white-space: nowrap;
  background: rgba(239,0,0,1);
  text-shadow: 0 0 9px rgba(20,255,20,0.7) ;
  -webkit-transition: color 202ms cubic-bezier(0, 0.89, 0.955, 0.11) 10ms;
  -moz-transition: color 202ms cubic-bezier(0, 0.89, 0.955, 0.11) 10ms;
  -o-transition: color 202ms cubic-bezier(0, 0.89, 0.955, 0.11) 10ms;
  transition: color 202ms cubic-bezier(0, 0.89, 0.955, 0.11) 10ms;
  -webkit-transform: rotateX(1.7188733853924696deg) rotateY(-56.7228217179515deg)   ;
  transform: rotateX(1.7188733853924696deg) rotateY(-56.7228217179515deg)   ;
}