我的網(wǎng)站上有一個標(biāo)題代碼:& lth3 class = & quot標(biāo)簽& quottype = & quot按鈕& quot& gt 這是一個手風(fēng)琴,所以我想把它改成: & lth3 class = & quot標(biāo)簽& quot& gt& ltbutton aria-expanded = & quot;true & quot& gt。但是它為按鈕添加了一些樣式。我不想要這個,我想保持現(xiàn)在的發(fā)型。除了設(shè)計按鈕的特殊類之外,還有其他有效的方法嗎?
它需要所有:繼承風(fēng)格,可以內(nèi)聯(lián)添加。
您可以對button元素應(yīng)用全局繼承:
button.aria-button {
all: inherit;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
和html:
<h3 class="label">
<button class="aria-button" aria-expanded="true">
{yourText}
</button>
</h3>