Last active
December 17, 2015 20:39
-
-
Save libo1106/5669590 to your computer and use it in GitHub Desktop.
css-triangle 兼容IE6
This file contains hidden or 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
.triangle_left, | |
.triangle_down, | |
.triangle_right, | |
.triangle_up{ | |
border:5px dashed transparent; | |
width:0; | |
height:0; | |
font-size:0; | |
overflow:hidden | |
} | |
.triangle_left{ | |
border-right:5px solid #000 | |
} | |
.triangle_down{ | |
border-top:5px solid #000 | |
} | |
.triangle_right{ | |
border-left:5px solid #000 | |
} | |
.triangle_up{ | |
border-bottom:5px solid #000 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment