Bonjour!

J'ai un probleme d'organisation dans un CSS:


En fait je souhaiterais que le texte s'affiche dans la bulle et juste dans celle-ci...

Je vous colle ici le 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
<!--
td.gauche{
	height:129px; width:165px;  
	background-image:url(Bulle_gauche.png);
 
}
td.droite{
	height:129px; width:165px; 
	background-image:url(Bulle_droite.png);
 
}
 
 
.gauche_txt{
	font-size:13px;
	position: relative;
	top:20px;
	left:20px;
	background:#006666;
	}
 
.droite_txt{
	font-size:13px;
	height:74px;
	width:124px;
	text-align:center;
	position: relative;
	top:20px;
	left:20px;
	}
	-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Essais</title>
</head>
 
<body>
 
 
 
<table border='0'>
	<tr>
   	  <td class='gauche'>Gauche gauche gauche gauche gauche gauche gauche gauche gauche gauche gauche gauche
   	    gauche gauche gauche</td>
       <td class='droite'><p>Droite droite droite 11111<br />
         Droite droite droite 11111<br />
       Droite droite droite 11111<br />
      Droite droite droite 11111<br />
       Droite droite droite 11111</p>
      </td>
  </tr>
</table>
 
</body>
</html>
Merci d'avance !
Je pensais créer en fait dans chaque <td> un <div class='{dte|gch}_txt'> mais cela ne donne pas l'effet souhaité...

Richard_Rahl