Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,167 questions

40,724 answers

573 users

how to convert mouse pointer arrow to hand onmouseover on input type submit button in CSS

3 Answers

0 votes
<!DOCTYPE html>
<html>
    <head>
        <style type="text/css">
            input[type="submit"] {
                cursor: pointer;
            }
        </style>
    </head>
    <body>
        <form>
            <input type="submit" name="submit" value="signup" />
        </form>
    </body>
</html>

 





answered Jan 2, 2016 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <head>
        <style type="text/css">
            input.signup {
                cursor: pointer;
            }
        </style>
    </head>
    <body>
        <form>
            <input class="signup" type="submit" name="submit" value="signup" />
        </form>
    </body>
</html>

 





answered Jan 2, 2016 by avibootz
0 votes
<!DOCTYPE html>
<html>
    <head>
        <style type="text/css">
            #signup {
                cursor: pointer;
            }
        </style>
    </head>
    <body>
        <form>
            <input id="signup" type="submit" name="submit" value="signup" />
        </form>
    </body>
</html>

 





answered Jan 2, 2016 by avibootz

Related questions

...