fix
Chris Demeke
Everyone can be a semi web designer now.
Proceed(5)
Thanks for your like.
You've done it, haven't you?
{"sid":"qpL","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 type="button" class="button-css" value="Line" />
Copy to clipboard
CSS
LESS
SCSS
.button-css {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 100px;
  margin: 6px;
  padding: 9px;
  border: none;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font: normal normal bold 17px/1 Arial, Helvetica, sans-serif;
  color: rgba(255,255,255,1);
  text-align: center;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background: rgba(23,145,193,1);
  -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) ;
}