有的时候我们需要给button设置一个在悬停上面时出现小手的效果。

但是输入hand没有效果,后来通过百度发现,使用pointer就可以了如下:

.button:hover{
	cursor: pointer;
}