Dieser Button funktioniert auch im IE7
HTML-Code:
<html>
<head>
<style type="text/css">
*/
form{
width:40ex;
}
input.submit{
background:#FF6666;
}
input.submit:hover{
cursor:pointer;
background:#33FF33;
}
*/
</style>
</head>
<body>
<br>
<form action="" method="post"><input
class="submit" value="Send" type="submit"></form>
<br>
</body>
</html>
und das gleiche mit disabled
HTML-Code:
<html>
<head>
<style type="text/css">
input.disabled {
background: #ff6666 none repeat scroll 0%;
width: 66px;
text-align: center;
}
input.disabled:hover {
background: #33ff33 none repeat scroll 0%;
cursor: pointer;
}
</style>
</head>
<body>
<br>
<form action="" method="post"><input
value="disabled" class="disabled" type="disabled"></form>
<br>
</body>
</html>