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":"CdN","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">Federacion Noticias</div>
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: none;
  font: normal 16px/1 "Times New Roman", Times, serif;
  color: black;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-transition: all 200ms cubic-bezier(0.99, 0.37, 0, 0.675) 10ms;
  -moz-transition: all 200ms cubic-bezier(0.99, 0.37, 0, 0.675) 10ms;
  -o-transition: all 200ms cubic-bezier(0.99, 0.37, 0, 0.675) 10ms;
  transition: all 200ms cubic-bezier(0.99, 0.37, 0, 0.675) 10ms;
  -webkit-transform: rotateX(10.31324031235482deg) rotateY(-9.167324722093172deg)   ;
  transform: rotateX(10.31324031235482deg) rotateY(-9.167324722093172deg)   ;
}

.enjoy-css:active {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: none;
  transform: none;
}