样式;使用 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中文网其他相关文章!