J'aimerais faire un bouton noir avec un arrondi au début du boutton et un autre à sa fin.
Ensuite j'aimerais que ce bouton soit centré dans ma page.
Sous IE j'y arrive mais pas sour FF.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
.new_button {
	height: 12px;
	display: block;
	background-repeat:no-repeat;
	background-image: url("../images/bborders1.png");
	background-position: top left;
	padding-left: 8px;
	text-align: center;
}
 
.new_button span {
	height: 12px;
	display: block;
	background-repeat:no-repeat;
	background-image: url("../images/bborders2.png");
	background-position: top right;
	padding-right: 8px;
	border: none;
 
	line-height: 11px;
	font-size: 10px;
	font-weight: bold;
	background-color: black;
	color: white;	
}
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
 
	<div style="text-align:center; padding-top: 2em; position: relative;">
	<a style="width: 10em;" href="javascript:document.getElementById('form_artistData').submit();" class="new_button"><span>Bevestigen</span></a>
	</div>
quelqu'un sait coment procéder ?