【发布时间】:2026-01-05 17:50:02
【问题描述】:
是否有浏览器使用的样式列表作为他们自己对 css 的解释。 例如,IE10 在表单的输入中添加了一个额外的删除按钮,而 Firefox 在链接中添加了虚线。
input::-ms-clear { //Remove IE10's “clear field” X button
display: none;
}
input::-moz-focus-inner { //Removing The Dotted Outline FireFox
border: 0;
}
考虑到我不知道不同的 css 使用了哪些浏览器,我想知道这里是列表还是 rest.css。
【问题讨论】:
-
你的意思是this?例如,对于 Firefox。
-
问题是什么?
-
搜索时,查找“供应商前缀”。或者,搜索 ms moz 会让你继续前进。
标签: css