2012-07-04 32 views

回答

0

查找HERE關於如何使用CSS來畫一個三角形的指令。 下面是一個例子:

.arrow-right { 
    width: 0; 
    height: 0; 
    border-top: 60px solid transparent; 
    border-bottom: 60px solid transparent; 

    border-left: 60px solid green; 
} 

CSS技巧可以發現here

相關問題