HTMLFencedFrameElement: height 属性
height
属性是 HTMLFencedFrameElement
的对应 <fencedframe>
height
属性的获取器和设置器,用于指定元素的高度。
嵌入式内容的大小可以通过 <fencedframe>
的 config
对象的内部 contentWidth
和 contentHeight
属性来设置。在这种情况下,更改 <fencedframe>
的 width
或 height
将更改页面上嵌入式容器的大小,但容器内的文档将在视觉上缩放以适合。嵌入式文档的报告宽度和高度(即 Window.innerWidth
和 Window.innerHeight
)将保持不变。
值
表示元素高度的字符串,以 CSS 像素为单位。默认值为 150
。
示例
js
const frame = document.createElement("fencedframe");
frame.height = "320";
规范
规范 |
---|
Fenced Frame # dom-htmlfencedframeelement-height |
浏览器兼容性
BCD 表只在启用 JavaScript 的浏览器中加载。
另请参阅
- Fenced frames on developers.google.com
- The Privacy Sandbox on developers.google.com