New! My 44-page ebook "CSS in 44 minutes" is out! 😃
# param
Defines a parameter for an <object>
element.
Example: Copy
name
The name of the parameter.
"movie"
The object is a movie which needs the URL of a .swf
file.
"wmode"
How the background of the object is handled.
"allowFullScreen"
If the object is allowed to go fullscreen.
value
The value attached to the parameter.
"/assets/golf.swf"
If the parameter is movie
, the value is the URL to file.
"transparent"
If the parameter is wmode
, the value is either window
, direct
, transparent
, opaque
, or gpu
.