This works in at least IE7+
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
#btn1 {
width: 200px;
height: 300px;
background-image: url('btn0.jpg');
border: none;
}
#btn1:hover {
background-image: url('btn1.jpg');
}
</style>
</head>
<body>
<form action="formProcessor.php" method="post">
<input type="text" name="txt1" />
<button id="btn1" type="submit"></button>
</form>
</body>
</html>
but as I said, use whichever type of button you are most comfortable with
Bookmarks