En effet : Un tableau ou un <div> que tu positionnera avec CSS, margin-left par exemple. -- ex : -- <html> <head> <title></title> <style type='text/css'> BODY { margin-left:auto; margin-right:auto; } DIV.centre{ width:800px; height:auto; } </style> </head> <body> <div class='centre'> <object>Ton Flash</object> </div> </body> </html> -- Tu pourra le placer où tu veux en jouant avec les valeurs en CSS de ton ' div ' ou ' body '. Ce n'est qu'un exemple. -- Improve
|