[ Web Proxy ]
URL:
Viewing: https://developer.mozilla.org/ko/docs/Web/HTML/Reference/Elements/object [Back]  [Original]

<object> - HTML: Hypertext Markup Language | MDN

This page was translated from English by the community. Learn more and join the MDN Web Docs community.

View in English Always switch to English

<object>

Baseline Widely available

This feature is well established and works across many devices and browser versions. Its been available across browsers since 2015 7.

HTML <object> , , .

In this article

<object
  type="video/mp4"
  data="/shared-assets/videos/flower.mp4"
  width="250"
  height="200"></object>

.

archive

A space-separated list of URIs for archives of resources for the object.

border

The width of a border around the control, in pixels.

classid

The URI of the object's implementation. It can be used together with, or in place of, the data attribute.

codebase

The base path used to resolve relative URIs specified by classid, data, or archive. If not specified, the default is the base URI of the current document.

codetype

The content type of the data specified by classid.

data

URL. data type .

declare

The presence of this Boolean attribute makes this element a declaration only. The object must be instantiated by a subsequent <object> element. In HTML5, repeat the <object> element completely each that that the resource is reused.

form

object form . <form> ID .

height

CSS .

name

(HTML5) , (HTML 4)

standby

A message that the browser can show while loading the object's implementation and data.

tabindex

The position of the element in the tabbing navigation order for the current document.

type

data . data type .

typemustmatch

type

usemap

<map> - ; # map name

width

CSS .

html
<!-- Embed a flash movie -->
<object data="move.swf" type="application/x-shockwave-flash"></object>

<!-- Embed a flash movie with parameters -->
<object data="move.swf" type="application/x-shockwave-flash">
  <param name="foo" value="bar" />
</object>

Specification
HTML
# the-object-element


Web Proxy Viewer  |  New URL  |  Original Page