fix
Rodrigo Kono
This webApp can help for developers who are not masters in CSS
Proceed(8)
Thanks for your like.
You've done it, haven't you?
{"sid":"11Te","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="inset-text-effect">Inset
effect</div>
<link async href="http://fonts.googleapis.com/css?family=Aladin" data-generated="http://enjoycss.com" rel="stylesheet" type="text/css"/>
Copy to clipboard
CSS
LESS
SCSS
.inset-text-effect {
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: none;
  font: normal 70px/1 "Aladin", Helvetica, sans-serif;
  color: rgba(48,48,48,1);
  text-align: center;
  text-transform: normal;
  -o-text-overflow: clip;
  text-overflow: clip;
  white-space: pre;
  text-shadow: 1px 1px 0 rgba(140,140,140,0.6) , -1px -1px 1px rgba(0,0,0,0.67) ;
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 1, 1) 10ms;
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 1, 1) 10ms;
  -o-transition: all 200ms cubic-bezier(0.42, 0, 1, 1) 10ms;
  transition: all 200ms cubic-bezier(0.42, 0, 1, 1) 10ms;
}