fix
Joan Leon
There is no longer any excuse for not playing with #css3 http://enjoycss.com/
Proceed(2)
Thanks for your like.
You've done it, haven't you?
{"sid":"11Ex","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
<input class="enjoy-css" placeholder="Enjoy" />
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 250px;
  padding: 20px;
  border: 1px solid #b7b7b7;
  border-bottom: 4px solid #980000;
  font: normal normal bold 16px/normal "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  color: rgba(40,40,40,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(252,252,252,1);
  -webkit-box-shadow: 2px 0 2px 0 rgba(0,0,0,0.2) ;
  box-shadow: 2px 0 2px 0 rgba(0,0,0,0.2) ;
  -webkit-transition: background 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: background 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: background 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: background 200ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: rotateX(0.15deg) rotateY(0.5729577951308232deg)  translateX(1px) skewX(-1deg);
  transform: rotateX(0.15deg) rotateY(0.5729577951308232deg)  translateX(1px) skewX(-1deg);
}