2016-11-16 203 views

回答

2

你可以在你的CSS創建一個自定義類,並把它添加到您的UL標籤種類

.textdeco 
{ 
text-transform:none; 
} 

<ul class="dropdown-menu textdeco"...> 

或直接內嵌

<ul class="dropdown-menu" style="text-transform:none"...> 

W3Schools的解釋好聽

Text-Transform