HTML object border Attribute
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <object> border Attribute

 HTML <object> tag

Example

An <object> with a 5 pixels thick border:

<object width="200" height="200" data="helloworld.swf" border="5"></object>
Try it Yourself »

Definition and Usage

The border attribute specifies the width of the border around an <object>.


Browser Support

Attribute
border Yes Yes Yes Yes Yes

Compatibility Notes

The border attribute of <object> is not supported in HTML5. Use CSS instead.

CSS syntax: <object style="border:5px solid black">

CSS Example: An <object> with border

In our CSS tutorial you can find more details about the border property.


Syntax

<object border="pixels">

Attribute Values

Value Description
pixels The width of the border, in pixels

 HTML <object> tag