Cursor : hand not working on chrome and mozilla but works on ie
css
Solution
It not working because the consortium is renamed it to `pointer`. So change `hand` to `pointer` and it should work.
Problem
Css cursor:hand; this is working in Internet Explorer, but not in other browsers...why is this? ``` <input type="button" class="submit" value="submit" /> .submit { background: transparent; border-top: 2px solid #00F; border-right: 0; border-bottom: 2px solid #00F; border-left: 0; color: #00F; display: inline; margin: 0; padding: 0; cursor:hand; } ```