在 Chrome 中渲染网站时,我注意到某些<input>
元素开始显得很奇怪。在检查 Chrome 内置开发人员工具中的元素时,我发现匹配-webkit
的 CSS 规则在任何样式表中都不存在。例如下面的例子:
<input type="submit">
此类元素没有规则,但这是 Crome 的开发人员工具显示的内容:
Matched CSS Rules:
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"]::-webkit-file-upload-button,
button {
-webkit-box-align: center;
...
}
有人知道我为什么会遇到这种情况吗?该页面使用标准标题加载:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
HTML 5 没有被提及(如果这与它有任何关系的话......)。
谢谢。