不久,我在CSS中爲「p」寫了任何東西,這個元素的丟棄消失並覆蓋了所有的「p」規則。重寫元素的CSS Inherance
難道這是固定的,以保持內聯和「p」元素的風格。
p:first-of-type::first-letter {
font-size: 25px;
font-weight: bold;
}
p:nth-of-type(2)::first-letter {
font-size: 25px;
font-weight: bold;
}
p:nth-of-type(3)::first-letter {
font-size: 25px;
font-weight: bold;
}
/* inline container */
p {
display: inline-flex;
width: 33%;
}
僅供參考:在FF中,這不是做任何事情:) – Martijn
刪除inline-flex規則修復了這個問題,但我不知道爲什麼。你爲什麼使用inline-flex? – Ryan