views:

49

answers:

1

I am very new to javascript and I need to figure out how to make a javascript applet that is centered in my webpage. Can anyone link me to a resource that will show me how to do this?

+3  A: 
<div style="width:320px;margin-left:auto;margin-right:auto;">
  <!-- applet goes here -->
</div>

This assumes the applet is 320px wide.

Will