fix
Joan Leon
There is no longer any excuse for not playing with #css3 http://enjoycss.com/
Proceed(9)
Thanks for your like.
You've done it, haven't you?
{"sid":"1kHJ","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">WarChild</div>
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  float: right;
  cursor: crosshair;
  margin: 4px;
  padding: 1px;
  overflow: auto;
  border: none;
  font: normal normal bold 16px/1 "Courier New", Courier, monospace;
  color: black;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background: rgba(10,255,234,0.82);
  -webkit-box-shadow: 4px 4px 6px 1px rgba(0,0,0,0.77) inset;
  box-shadow: 4px 4px 6px 1px rgba(0,0,0,0.77) inset;
}

.enjoy-css:hover {
  border: 3px dotted;
  -webkit-border-radius: 0 0 3px / 0 0 2px;
  border-radius: 0 0 3px / 0 0 2px;
  text-shadow: 6px 1px 9px rgba(249,237,237,1) ;
  -webkit-transform: rotateX(1deg) rotateY(1deg) scaleX(2) scaleY(2)  ;
  transform: rotateX(1deg) rotateY(1deg) scaleX(2) scaleY(2)  ;
}

.enjoy-css::before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 30%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border: none;
  font: normal 16px/normal "Times New Roman", Times, serif;
  color: rgba(0,0,0,0.9);
  -o-text-overflow: clip;
  text-overflow: clip;
  text-shadow: none;
}

.enjoy-css::after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  width: 30%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  border: none;
  font: normal 16px/normal "Times New Roman", Times, serif;
  color: rgba(0,0,0,0.9);
  -o-text-overflow: clip;
  text-overflow: clip;
  text-shadow: none;
}