Search code examples
htmlcssobjectalignment

Aligning Issues with flash file in CSS/HTML


I am having some problems with aligning an object in my HTML page. I've searched high and low and there were many solutions such as setting both the right and left margin to auto and using margin:0 auto; in CSS. Even typing in align="center" in the html code does not work.

My codes are here: http://jsfiddle.net/qzfwt7j8/1/

Any help would be greatly appreciated.


Solution

  • Add one parent div and apply margin:0px auto and also width 550

    <div style="margin:0px auto; width:550px;">
           <object class="ACGame" width="550" height="400" data="AppleCatcher.swf"></object>
    </div>