fix
Rodrigo Kono
This webApp can help for developers who are not masters in CSS
Proceed(10)
Thanks for your like.
You've done it, haven't you?
{"sid":"CPI","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: 140px;
  height: 35px;
  margin: 0 5px 0 0;
  padding: 3px 6px 2px;
  border: medium none -moz-use-text-color;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font: normal normal 700 16px/normal Arial, Helvetica, sans-serif;
  color: rgb(255, 255, 255);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgb(236, 0, 0);
  -webkit-box-shadow: 5px 8px 20px 0 rgba(0,0,0,0.75) , 2px 2px 2px 0 rgba(0,0,0,0.51) ;
  box-shadow: 5px 8px 20px 0 rgba(0,0,0,0.75) , 2px 2px 2px 0 rgba(0,0,0,0.51) ;
  text-shadow: 3px 2px 6px rgb(0,0,0) , 3px 2px 3px rgba(0,0,0,0.31) ;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}