fix
Rodrigo Kono
This webApp can help for developers who are not masters in CSS
Proceed(7)
Thanks for your like.
You've done it, haven't you?
{"sid":"Yyb","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"></div>
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: 400px;
  height: 300px;
  border: none;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  font: normal 16px/1 "Times New Roman", Times, serif;
  color: rgba(255,255,255,1);
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background: -webkit-linear-gradient(-90deg, rgba(0,0,0,0) 0, rgba(0,0,0,1) 100%), rgb(75,75,75);
  background: -moz-linear-gradient(180deg, rgba(0,0,0,0) 0, rgba(0,0,0,1) 100%), rgb(75,75,75);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0, rgba(0,0,0,1) 100%), rgb(75,75,75);
  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: 3px 3px 18px 3px rgba(40,40,40,1) ;
  box-shadow: 3px 3px 18px 3px rgba(40,40,40,1) ;
  -webkit-transform: rotateX(25.783100780887047deg) rotateY(17.188733853924695deg) rotateZ(8.021409131831525deg)  translateX(17px) translateY(39px) ;
  transform: rotateX(25.783100780887047deg) rotateY(17.188733853924695deg) rotateZ(8.021409131831525deg)  translateX(17px) translateY(39px) ;
}