Variable: ForceElementSizeFeature
• Const
ForceElementSizeFeature: FeatureClass<ForceElementSizeOptions>
This feature sets element size programmatically and only once, when DOMContentLoaded has been fired. See ForceElementSizeOptions for customization.
example
const Webshell = makeWebshell(
WebView,
new ForceElementSizeFeature({
target: { id: "blog-content" },
heightValue: 500,
forceWidth: false,
})
);