标签: css hover global
一个简短的问题,如何为全局类型提交的输入字段声明悬停效果?
我试过了:
input [type=submit]:hover { cursor: pointer; }
但这似乎不起作用。
答案 0 :(得分:1)
我认为您必须删除input和[type=submit]:hover
input
[type=submit]:hover
input[type=submit]:hover { cursor: pointer; }