msWrapFlow property

Gets or sets a value that specifies how exclusions impact inline content within block-level elements.

This property is read/write.

 

Syntax

HRESULT put_msWrapFlow(
  [in]  DOMString val
);

HRESULT get_msWrapFlow(
  [out] DOMString **ptr
);

Property values

Type: DOMString

String format

auto | both | start | end | maximum | clear

CSS information

Applies To block-level elements
Media visual
Inherited no
Initial Value auto

Standards information

Remarks

The IHTMLCSSStyleDeclaration2::msWrapFlow property makes an element an exclusion element when it has a computed value other than auto. This property specifies that the exclusion element (the exclusion) can be positioned in various ways, and that inline content will wrap around the exclusion in a way similar to how it wraps around floated elements.

When the IHTMLCSSStyleDeclaration2::msWrapFlow property's computed value is auto, the element does not become an exclusion element unless its IHTMLStyle::styleFloat property's computed value is not none. In that case, the element contributes its border box to its containing block's wrapping context and content flows around it according to the IHTMLRuleStyle::clear property. For more information about exclusion elements' impact on content flow, see the Definitions section of the CSS3 Exclusions specification.

Requirements

IDL

Mshtml.idl

See also

Internet Explorer 10 Guide for Developers: CSS Exclusions