fix
Kazumasa Okabe
OnlineTool which allows creating a nice look without writing a code. EnjoyCSS can be easily used by people who are not professionals in CSS coding.
Proceed(9)
Thanks for your like.
You've done it, haven't you?
{"sid":"5C","rid":9,"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="button">Enjoy</div>
Copy to clipboard
CSS
LESS
SCSS
.button {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 110px;
  padding: 20px;
  overflow: hidden;
  border: 0 solid;
  border-right-width: 5px;
  font: normal medium/normal Arial, Helvetica, sans-serif;
  color: rgba(255,255,255,1);
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background: -webkit-linear-gradient(-90deg, rgba(208,228,247,1) 0, rgba(115,177,231,0.5) 24%, rgba(10,119,213,0.2) 50%, rgba(83,159,225,0.5) 79%, rgba(135,188,234,1) 100%), rgba(255,255,0,0.8);
  background: -moz-linear-gradient(180deg, rgba(208,228,247,1) 0, rgba(115,177,231,0.5) 24%, rgba(10,119,213,0.2) 50%, rgba(83,159,225,0.5) 79%, rgba(135,188,234,1) 100%), rgba(255,255,0,0.8);
  background: linear-gradient(180deg, rgba(208,228,247,1) 0, rgba(115,177,231,0.5) 24%, rgba(10,119,213,0.2) 50%, rgba(83,159,225,0.5) 79%, rgba(135,188,234,1) 100%), rgba(255,255,0,0.8);
  background-position: 50% 50%;
  -webkit-background-origin: padding-box;
  background-origin: padding-box;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-background-size: auto auto;
  background-size: auto auto;
  -webkit-box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.3) ;
  box-shadow: 1px 1px 1px 0 rgba(0,0,0,0.3) ;
  -webkit-transition: width 2000ms cubic-bezier(0.215, 0.61, 0.355, 1) 10ms;
  -moz-transition: width 2000ms cubic-bezier(0.215, 0.61, 0.355, 1) 10ms;
  -o-transition: width 2000ms cubic-bezier(0.215, 0.61, 0.355, 1) 10ms;
  transition: width 2000ms cubic-bezier(0.215, 0.61, 0.355, 1) 10ms;
  -webkit-transform: rotateX(224.02649789615188deg) rotateY(181.05466326134015deg) rotateZ(179.9087476710785deg) scaleX(2) translateX(11px) ;
  transform: rotateX(224.02649789615188deg) rotateY(181.05466326134015deg) rotateZ(179.9087476710785deg) scaleX(2) translateX(11px) ;
  -webkit-transform-origin: 50% 50% 1%;
  transform-origin: 50% 50% 1%;
}