Created
December 8, 2016 14:50
-
-
Save qzm/d51e9a0a4fe9823b709b525ecd453778 to your computer and use it in GitHub Desktop.
CSS三角形
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
.triangl { | |
/* 设置div的高度和宽度为 0 ,使得整个box只有border的部分 */ | |
height: 0; | |
width: 0; | |
/* 设置border为需要的宽度,并隐藏其他三边,这样三角形就出来了 */ | |
border-width: 15px; | |
border-style: solid; | |
border-color: transparent transparent #CCC transparent; | |
} |
Author
qzm
commented
Dec 8, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment