原文来自:snippets.barretlee.com,只是为了自己学习收集特意fork了一遍。如有侵权,联系删除:i@webcliwn.net。
演示:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| .arrow-up { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent;
border-bottom: 5px solid black; }
.arrow-down { width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent;
border-top: 20px solid #f00; }
.arrow-right { width: 0; height: 0; border-top: 60px solid transparent; border-bottom: 60px solid transparent; ss border-left: 60px solid green; }
.arrow-left { width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent;
border-right:10px solid blue; }
|