December 2, 200817 yr Hi, Can anyone help me out with code to position a swf movie in the centre of a html page please?? Thanks
December 2, 200817 yr Hello Here's the code in center your flash swf in html. Its up to you to adjust the desired size of the Div for your flash. Hope this helps. Thanks. CSS @charset "UTF-8";#flash { height: 500px; width: 500px; margin-right: auto; margin-left: auto; font-family: Arial, Helvetica, sans-serif; font-size: 12pt; text-align: center; background-color: #FFFFFF; } HTML <!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=UTF-8" /> <title>Untitled Document</title> <link href="file:///Macintosh HD/Users/spencersy/PROJECTS/DesignersNotePad/des_notep/css_dd/flash.css" rel="stylesheet" type="text/css" /> <style type="text/css"> <!-- body { background-color: #CCCCCC; } --> </style></head> <body> <div id="flash">Content for id "flash" Goes Here</div> </body> </html>
Create an account or sign in to comment