HTML CSS examples for HTML Tag:object
The width attribute specifies the width of the object, in pixels.
Value | Description |
---|---|
pixels | The width of the object, in pixels (i.e. width="100") |
A flash animation with a height and width of 400 pixels::
<!DOCTYPE html> <html> <body> <object width="400" height="400" data="helloworld.swf"> </object><!-- w w w . ja va 2 s .c o m--> </body> </html>