2012-08-23 94 views

回答

0

或者,你可以使用朝下的箭頭的圖像。

+3

我認爲它是一個評論,而不是一個答案。 –

+0

我不會爲這個圖片推薦一個圖片,除非你想要一個通過CSS無法實現的獨特箭頭(或者帶有一個font-awesome/bootstrap圖標庫),因爲它會添加不需要的額外資源。儘可能避免這種情況。 – Sprose

-1

請嘗試以下代碼添加箭頭,根據需要自定義箭頭的高度和寬度以及位置。

li.has_child:after { 
     content: ''; 
     position: absolute; 
     border: 7px solid transparent; 
     /* This will set the direction of the arrow.*/ 
     border-top: 7px solid white; 
      top: 34px; 
     margin-left: 5px; 

    } 
0

如果使用的是引導,你可以做到以下幾點:

<span class="caret"></span> 

無論跨度放在這將插入一個小的向下箭頭。

5
a:after{ 
    content: ''; 
    border: 4px solid transparent; 
    border-top: 4px solid white; 
    margin-left: 2px; 
    margin-bottom: 3px; 
    display: inline-block; 
    vertical-align: bottom; 
} 

我覺得這是做的最好的方法,因爲你可以調整長度的邊界,並調整「邊界」頂部的高度,給您完全定製。

0

如果你創建菜單,你想要的箭頭,箭頭不填黑試試這個代碼:(到:箭頭不填任何顏色)

&nabla; - ∇

+0

有趣的[nabla符號](https://en.wikipedia.org/wiki/Nabla_symbol)有一個命名實體。 – dakab

相關問題