fix
Christian Heilmann
EnjoyCSS is a WYSIWYG editor for CSS http://enjoycss.com/start/ - includes pseudo selector generation.
Proceed(4)
Thanks for your like.
You've done it, haven't you?
{"sid":"FtQ","rid":2,"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 {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 70px;
  height: 30px;
  cursor: pointer;
  margin: 2px 0;
  padding: 3px 10px;
  border: 2px solid rgb(221,115,8);
  -webkit-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  font: normal 16px/normal "Times New Roman", Times, serif;
  color: rgba(255, 255, 255, 0.901961);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgb(221, 115, 8);
  -webkit-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 300ms cubic-bezier(0.42, 0, 0.58, 1);
}

.enjoy-css:hover {
  margin: 2px 0 2px 2px;
  color: rgb(221, 115, 8);
  text-align: center;
  background: rgb(255, 255, 255);
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}