Created
July 25, 2013 07:47
-
-
Save binnng/6077636 to your computer and use it in GitHub Desktop.
在三星大部分手机上,如果想让子元素skew,必须要设置父元素skew(0deg)才行。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p class="title"> | |
<b></b> | |
<span>科鲁兹人气榜</span> | |
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#index .cruze_list .title{ | |
-webkit-transform: skewX(0deg); | |
transform: skewX(0deg); | |
} | |
#index .cruze_list .title b{ | |
-webkit-transform: skewX(-16deg); | |
transform: skewX(-16deg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment