HTML CSS examples for HTML Tag:param
You define the parameters that will be passed to the plugin using the param element.
You use one param element for each parameter you need to define.
The element is summarized in the following table.
The name and value attributes define the name and value of the parameter.
Item | value |
---|---|
Element: | param |
Element Type: | N/A |
Permitted Parents: | The object element |
Local Attributes: | name, value |
Contents: | None |
Tag Style: | Void |
New in HTML5? | No |
Changes in HTML5 | None |
Style Convention | param { display: none; } |
Specifying Fallback Content
With the object element you can include alternative content that will be displayed if the content is not available.
Using the Fallback Content Feature of the object Element
<!DOCTYPE html> <html> <head> <title>Example</title> </head> <body> <object width="560" height="349" data="http://example/myimaginaryfile"> <param name="allowFullScreen" value="true"> <b>Sorry!</b> We can't display this content </object> </body><!-- ww w.j a v a2 s . c o m--> </html>