Bonjour,
pour une page, j'ai besoin d'avoir la meme apparence pour les liens que pour les input.submit
j'ai donc modifié la CSS de la sorte :
html :
Par contre, le texte du lien s'affiche toujours en noir
et sur IE j'ai bien la taille de 25pixels, mais sous Firefox elle fait 31px
Avez vous une idée de ou peut venir le soucis ?
Merci
pour une page, j'ai besoin d'avoir la meme apparence pour les liens que pour les input.submit
j'ai donc modifié la CSS de la sorte :
.bouton input {
border: solid;
border-style: outset;
border-color: #006388;
border-width: 1px;
background-color: #006388;
float: right;
width: 81px;
height: 25px;
font-weight: bold;
color: #ffffff;
}
.bouton a:link {
border: solid;
border-style: outset;
border-color: #006388;
border-width: 1px;
background-color: #006388;
float: right;
width: 81px;
height: 25px;
font-weight: bold;
color: #ffffff;
}
.bouton a:visited {
border: solid;
border-style: outset;
border-color: #006388;
border-width: 1px;
background-color: #006388;
float: right;
width: 81px;
height: 25px;
font-weight: bold;
color: #ffffff;
}
.bouton a:hover {
border: solid;
border-style: outset;
border-color: #006388;
border-width: 1px;
background-color: #006388;
float: right;
width: 81px;
height: 25px;
font-weight: bold;
color: #ffffff;
}
.bouton a:active {
border: solid;
border-style: outset;
border-color: #006388;
border-width: 1px;
background-color: #006388;
float: right;
width: 81px;
height: 25px;
font-weight: bold;
color: #ffffff;
}
html :
<div class="bouton">
<input type="submit" name="ticket_valider" id="ticket_valider" value="Validate" class="bouton"/>
</div>
<div class="bouton">
<input name="ticket_annuler" id="ticket_annuler" type="submit" value="Cancel" class="bouton">
</div>
<div class="bouton">
<a href="mapage.html">Cancel</a>
</div>
Par contre, le texte du lien s'affiche toujours en noir
et sur IE j'ai bien la taille de 25pixels, mais sous Firefox elle fait 31px
Avez vous une idée de ou peut venir le soucis ?
Merci