次の方法で共有


Appendix

This topic describes VML, a feature that is deprecated as of Windows Internet Explorer 9. Webpages and applications that rely on VML should be migrated to SVG or other widely supported standards.

Note  As of December 2011, this topic has been archived. As a result, it is no longer actively maintained. For more information, see Archived Content. For information, recommendations, and guidance regarding the current version of Windows Internet Explorer, see Internet Explorer Developer Center.

To let the browsers know how to hand off data to a VML-specific processor, you need to type some information such as namespaces and behavior styles. You can then use VML to type graphics in the <BODY> region.

In this topic:

  • Namespaces
  • Behavior Styles

Namespaces

An XML mechanism indicates the namespace that an element comes from. If you switch from parsing in HTML to parsing in XML, this mechanism indicates the switch within HTML.

Ask the vender of your VML processor what information is required for the XML namespace.

If you use Microsoft Internet Explorer to render VML, always type the following line in the <HTML> tag:

<html xmlns:v="urn:schemas-microsoft-com:vml">

This information tells Internet Explorer to switch to namespace "urn:schemas-microsoft-com:vml" when parsing an XML tag with a prefix v:, and to hand off the resulting data to the VML processor.

Back to top

Behavior Styles

VML is defined in Microsoft Internet Explorer as a default behavior.

To render VML, always type the following lines in the <HEAD> region:

<style>
v\:* { behavior: url(#default#VML); display:inline-block}
</style>

VML is implemented in Internet Explorer through VGX.DLL. If your initial installation of the browser did not include VML behavior, you may need to add it as an option. You do not need to add an <object> tag.

 

 

Send comments about this topic to Microsoft

Build date: 2/7/2012