2013-04-29 116 views
-3

如何創建一個箭頭而不使用HTML中的圖像?我有一個jQuery插件或褒獎,他們已經創建了一個箭頭,而無需使用圖像通過使用以下樣式:如何在HTML中不使用圖像創建箭頭?

#testimonials .item div.text:after { 
    content: " "; 
    border: 10px solid transparent; 
    border-right-color: #fff; 
    display: block; 
    width: 0; 
    height: 0; 
    margin-top: -10px; 
    position: absolute; 
    left: -20px; 
    top: 50%; 
} 

我找不出這個風格。

+1

使用箭頭字符。 – Oded 2013-04-29 11:35:49

+0

可能的重複[這個CSS三角形的形狀如何工作?](http://stackoverflow.com/questions/7073484/how-does-this-css-triangle-shape-work) – Bojangles 2013-04-29 11:38:22

+3

我不知道[Google]( http://hedgerwow.appspot.com/demo/arrows)[was](http://www.yuiblog.com/blog/2010/11/22/css-quick-tip-css-arrows-and-shapes-無標記/)[破](http://css-tricks.com/snippets/css/css-triangle/) – Bojangles 2013-04-29 11:38:41

回答

3

←將創建一個←字符

→將創建一個→字符。

等。

看一看HTML characters

這實際上取決於你想創建什麼樣的箭頭。

1

無論使用Web字體像Font Awesome其他如@Oded說,你可以用用CSS content財產的箭頭人物,在列表中的情況下,或使用HTML實體,如←→

Demo

ul li:before { 
    content: '→ '; 
}