Home > Web Front-end > Front-end Q&A > How to use html param tag

How to use html param tag

藏色散人
Release: 2019-05-27 13:54:51
Original
3430 people have browsed it

html The param tag allows you to specify run-time settings for objects inserted into an XHTML document. That is, this tag can provide parameters for the or tag that contains it.

How to use html param tag

#html How to use param tag?

Use: Allows you to specify run-time settings for objects inserted into XHTML documents, that is, this tag can provide parameters for the or tag that contains it.

Note: In HTML, the tag has no closing tag. In XHTML, the tag must be closed properly.

Note: All browsers support the tag.

html param tag example

<object classid="clsid:F08DF954-8592-11D1-B16A-00C0F0283628" id="Slider1" 
width="100" height="50">
<param name="BorderStyle" value="1" />
<param name="MousePointer" value="0" />
<param name="Enabled" value="1" />
<param name="Min" value="0" />
<param name="Max" value="10" />
</object>
Copy after login

The above is the detailed content of How to use html param tag. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template