Skip to content

Instantly share code, notes, and snippets.

@qzm
Created December 8, 2016 14:50
Show Gist options
  • Save qzm/d51e9a0a4fe9823b709b525ecd453778 to your computer and use it in GitHub Desktop.
Save qzm/d51e9a0a4fe9823b709b525ecd453778 to your computer and use it in GitHub Desktop.
CSS三角形
.triangl {
/* 设置div的高度和宽度为 0 ,使得整个box只有border的部分 */
height: 0;
width: 0;
/* 设置border为需要的宽度,并隐藏其他三边,这样三角形就出来了 */
border-width: 15px;
border-style: solid;
border-color: transparent transparent #CCC transparent;
}
@qzm
Copy link
Author

qzm commented Dec 8, 2016

screen shot 2016-12-08 at 22 29 31

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment