樣式;使用CSS :WebKit 中的偽元素
試圖增強
HTML:
<select name=""> <option value="">Test</option> </select>
CSS:
select { -webkit-appearance: none; background: black; border: none; border-radius: 0; color: white; } select::after { content: ""; display: inline-block; width: 24px; height: 24px; background: blue; }
以上是為什麼 CSS `::after` 不設定 WebKit 中我的 `` 元素的樣式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!