fix
Joan Leon
There is no longer any excuse for not playing with #css3 http://enjoycss.com/
Proceed(8)
Thanks for your like.
You've done it, haven't you?
{"sid":"147h","rid":1,"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;
  width: 160px;
  padding: 20px;
  border: 1px solid rgba(214,115,141,1);
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font: normal 16px/1 Arial, Helvetica, sans-serif;
  color: rgba(244,24,24,1);
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background: #c7dadb;
  -webkit-box-shadow: -5px -5px 10px 0 rgba(0,0,0,0.3) ;
  box-shadow: -5px -5px 10px 0 rgba(0,0,0,0.3) ;
  text-shadow: -2px -2px 1px rgba(0,0,0,0.2) ;
}