overflow: hidden; outline: none;
<html>
<head>
<title>Wii Button Example</title>
<style>
.ShortButton a{
/* -- shape and color -- */
display: block;
background: White url(button45.png) center center no-repeat;
width: 45px;
padding: 7px 0px;
/* -- border style -- */
border: none;
border-style:none;
overflow: hidden;
outline: none;
/* -- text style -- */
color: DarkBlue;
font-size: 10px;
font-weight: bold;
text-align: center;
text-decoration: none;
/* -- display same row -- */
float: left;
}
.MiddleButton a{
/* -- shape and color -- */
display: block;
background: White url(button90.png) center center no-repeat;
width: 90px;
padding: 7px 0px;
/* -- border style -- */
border: none;
border-style:none;
overflow: hidden;
outline: none;
/* -- text style -- */
color: DarkBlue;
font-size: 10px;
font-weight: bold;
text-align: center;
text-decoration: none;
/* -- display same row -- */
float: left;
}
.LargeButton a{
/* -- shape and color -- */
display: block;
background: White url(button180.png) center center no-repeat;
width: 180px;
padding: 7px 0px;
/* -- border style -- */
border: none;
border-style:none;
overflow: hidden;
outline: none;
/* -- text style -- */
color: DarkBlue;
font-size: 10px;
font-weight: bold;
text-align: center;
text-decoration: none;
/* -- display same row -- */
float: left;
}
.ShortButton a:hover {
color: red;
background-color: lightBlue;
}
.MiddleButton a:hover {
color: red;
background-color: lightBlue;
}
.LargeButton a:hover {
color: red;
background-color: lightBlue;
}
</style>
</head>
<body>
<p class="ShortButton"><a href="#">Button</a></p>
<p class="MiddleButton"><a href="#">Button</a></p>
<p class="LargeButton"><a href="#">Button</a></p>
<br crear="all"/>
</body>
</head>