0
問:如何覆蓋自定義表類的字體大小,以便它們不會獲取繼承的值?如何重寫樣式繼承?
table {
font-size: 1.09em;
/* other stuff... */
}
table.order
{
font-size: 0.75 em; /* font isn't getting set....it's picking up the 1.09em from the above table */
}
讓我們看看你的html – BNL