bonjour,
comment pourrais je réaliser un bouton avec des coins arrondis qui pourrait s'étendre selon le texte et de plus avec un rollover à la manière porte coulissante sur tous le bouton?
Merci pour votre aide
Modifié par gforce (03 Jul 2007 - 10:10)
comment pourrais je réaliser un bouton avec des coins arrondis qui pourrait s'étendre selon le texte et de plus avec un rollover à la manière porte coulissante sur tous le bouton?
<a href="/" class="button"><span class="start"></span>Edit Data</a>
.start {
background: yellow url(/ECOS/images/button_start.png) no-repeat top left;
height: 21px;
width: 9px;
float: left;
margin: 0 5px 0 0;
}
a.button {
font-family: Arial, Helvetica, sans-serif;
display: block;
font-size: 12px;
font-weight: bold;
line-height: 21px;
color: #595a5c;
text-decoration: none;
height: 21px;
float: right;
padding: 0 30px 0 0;
margin: 5px 0 0 0;
background: red url(images/button_end.png) repeat-x top right;
}
a.button:hover {
background: red url(/images/button_end.png) repeat-x bottom right;
}
.start:hover {
background: yellow url(/images/button_start.png) no-repeat bottom left;
}
Merci pour votre aide
Modifié par gforce (03 Jul 2007 - 10:10)