28172 sujets

CSS et mise en forme, CSS3

Bonjour,

j'essai en vain depuis deux jours de faire un bouton en dédradé css + un petit icone à droite mais je n'y arrive qu'en partie Smiley ohwell L'icone ne se voit que sur le active je comprend pas.

Si quelqu'un a une idée Smiley smile

<a href="#" class="test">Bouton avec fond</a>


.test{
	-moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
	-webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
	box-shadow:inset 0px 1px 0px 0px #bbdaf7;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #50a3e2), color-stop(1, #247fcc) );
	background:-moz-linear-gradient( center top, #50a3e2 5%, #247fcc 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#50a3e2', endColorstr='#247fcc');
	background-color:#247fcc;
	-webkit-border-top-left-radius:7px;
	-moz-border-radius-topleft:7px;
	border-top-left-radius:7px;
	-webkit-border-top-right-radius:7px;
	-moz-border-radius-topright:7px;
	border-top-right-radius:7px;
	-webkit-border-bottom-right-radius:7px;
	-moz-border-radius-bottomright:7px;
	border-bottom-right-radius:7px;
	-webkit-border-bottom-left-radius:7px;
	-moz-border-radius-bottomleft:7px;
	border-bottom-left-radius:7px;
	text-indent:0;
	border:1px solid #84bbf3;
	display:inline-block;
	color:#ffffff;
	font-family:Arial;
    letter-spacing:-1px;
	font-size:19px;
	font-weight:bold;
	font-style:normal;
	height:50px;
	line-height:0px;
	width:220px;
	text-decoration:none;
	text-align:left;
	text-shadow:1px -1px 0px #528ecc;
    text-transform : none;
	 
	
}
.test::before{
    position:absolute;
    content: "\25BA";
    left: 25%;
    bottom: 11px;
    margin-left: 130px;
    width: 25px;
    height: 25px;
}
.test:hover {
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #4ea3df), color-stop(1, #42a0e3) );
    background:-moz-linear-gradient( center top, #4ea3df 5%, #42a0e3 100% );
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4ea3df', endColorstr='#42a0e3');   
}
.test:active {
    position:relative;
    top:1px;
    background: -webkit-gradient(linear, left top, left bottom, from(#4ea3df), to(#42a0e3));
    box-shadow: 1px 1px 5px rgba(0,0,0,0.3) inset,0 1px 0 rgba(255,255,255,0.1);
    background: -webkit-linear-gradient(#4ea3df,#42a0e3);
    background: -moz-linear-gradient(#4ea3df,#42a0e3);
    background: -ms-linear-gradient(#4ea3df,#42a0e3);
    background: -o-linear-gradient(#4ea3df,#42a0e3);
    background: linear-gradient(#4ea3df,#42a0e3);
}



merci
Modifié par billout31 (21 Apr 2014 - 18:25)