以上對李的回答進行了拓展。我遇到了同樣的問題,所以我採納了他的建議,並檢查了我在美樂家中製作的自定義主題。 它已經有了如下 -
/* Buttons
-----------------------------------------------------------------------------------------------------------*/
.ui-btn,
label.ui-btn {
font-weight: bold;
border-width: 1px;
border-style: solid;
}
.ui-btn:link {
text-decoration: none !important;
但我是越來越下劃線所以我加了文字修飾:無重要;!到我的全局字體部分 -
/* Globals */
/* Font
-----------------------------------------------------------------------------------------------------------*/
html {
font-size: 100%;
}
body,
input,
select,
textarea,
button,
.ui-btn {
font-size: 1em;
line-height: 1.3;
font-family: sans-serif /*{global-font-family}*/;
text-decoration: none !important;
這樣就停止了下劃線。
我使用(p.levelDescA {text-decoration:none;}但它仍然有下劃線。需要從指定的容器開始? –
從該選擇器判斷,您試圖從'p'標籤,超鏈接自動爲'a'標籤分配一個下劃線try#contentA.contentbox a {text-decoration:none;}' – Andy