Bonjour,

j'ai rajouté une link dans un bouton, et je veux que le bouton s'étire en fonction du texte que je veux, je ne sais pas s'il existe une option pour le faire, en tout cas, voici mon code :
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
27
28
29
30
31
32
33
34
35
36
37
<html>
<head>
    <title> <decorator:title default="Welcome!"/></title>
 
<style>
 
body{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	text-align: center;
}
a.button{ 	background:transparent url(img/button.gif);
		display:block;
		color:#555555;
		font-weight:bold;
		height:30px;
		line-height:29px;
		margin-bottom:14px;
		text-decoration:none;
		width:191px;
 
	}
a:hover.button{		
		color:#0066CC;
	}
 
</style>
</head>
 
<body>
    <td>
	 <a href="#" class="button"><span>Présentation</span></a>
 
    </td>
</body>
 
</html>
Merci d'avance