Feb 5, 2004 #1 adamr1001 MIS Jul 25, 2001 166 CA i placed a flash object on an html page, and by default there is a 3-5 pixel top and left margin.. how do i get rid of it?
i placed a flash object on an html page, and by default there is a 3-5 pixel top and left margin.. how do i get rid of it?
Feb 5, 2004 #2 Chacalinc Vendor Sep 2, 2003 2,043 US <body marginheight=0 marginwidth=0 topmargin=0 leftmargin=0> via CSS: <style> body { margin: 0; padding: 0; } </style> or inline: <body style="margin: 0; padding: 0;"> Upvote 0 Downvote
<body marginheight=0 marginwidth=0 topmargin=0 leftmargin=0> via CSS: <style> body { margin: 0; padding: 0; } </style> or inline: <body style="margin: 0; padding: 0;">
Feb 5, 2004 1 #3 BillyRayPreachersSon Programmer Dec 8, 2003 17,047 GB The CSS is the better option... But don't forget to specify the type and units: Code: <style type="text/css"> body { margin: 0px; padding: 0px; } </style> Hope this helps, Dan Upvote 0 Downvote
The CSS is the better option... But don't forget to specify the type and units: Code: <style type="text/css"> body { margin: 0px; padding: 0px; } </style> Hope this helps, Dan
Feb 5, 2004 #4 occas Technical User Jan 14, 2004 164 US i think this may have answered my post above. ty. Upvote 0 Downvote