Originariamente inviato da steiraci
chiedo troppo un'esempio ??
:gren:
Pescato in rete:

<html>

<head>
<title>Button con Style</title>
<style>

.button {
font-weight: bold;
font-family: ms sans serif,system,arial;
font-size: 10pt;

color: #ffffff;
background-color: #003366;
border-style: outset;
border-color: #6699ff;

cursor: se-resize;

BORDER-TOP-WIDTH: 2px;
BORDER-LEFT-WIDTH: 2px;
BORDER-BOTTOM-WIDTH: 2px;
BORDER-RIGHT-WIDTH: 2px

HEIGHT: 16px;
WIDTH: 100px;

background-attachment: fixed;
background-image: url('smile.gif');
background-repeat: no-repeat;
}
</style>
</head>

<body>
<input type="button" value="Click Me" class="button" onclick="alert('Ahia !!!');">
</body>

</html>