J’ai une page html avec un tableau qui s’étal sur toute la largeur de la page grâce a [ style="width:100%" ], j’ai mis mon .swf dans le cellule tout en haut du tableau et je voudrai que le .swf s’étire sur toute la largeur de la cellule comme le tableau le fait sur la page.
Voici le contenu de ma page html:
Quelqu'un saurait-il m'aider ?
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 <!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> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Document sans titre</title> </head> <body> <table width="200" border="1" style="width:100%"> <tr> <td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="600" height="150"> <param name="movie" value="Baniere.swf" /> <param name="quality" value="high" /> <embed src="Baniere.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="600" height="150"></embed> </object></td> </tr> <tr> <td> </td> </tr> <tr> <td> </td> </tr> </table> </body> </html>
Partager