Skip to content

Instantly share code, notes, and snippets.

@markshust
Created March 21, 2013 22:41
Show Gist options
  • Select an option

  • Save markshust/5217479 to your computer and use it in GitHub Desktop.

Select an option

Save markshust/5217479 to your computer and use it in GitHub Desktop.
skew font with css
http://jsfiddle.net/89x4d/102/
div {
width: 200px;
height:50px;
background: red;
-webkit-transform: skew(14deg);
-moz-transform: skew(14deg);
-o-transform: skew(14deg);
transform: skew(14deg);
margin: 20px;
}
p {
-webkit-transform: skew(0deg) !important;
-moz-transform: skew(0deg) !important;
-o-transform: skew(0deg) !important;
transform: skew(0deg) !important;
}
<div>
<p>hey i'm straight, ok?</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment