<embed> 元素type属性定义被嵌入内容的 MIME 类型。
本案例设置一个视频标签
<!DOCTYPE html> <html> <head> <title>嵌入内容宽度属性案例-HTML教程www.xuandaima.com</title> </head> <body> <embed type="video/webm" src="/Template/Test/src/mov_bbb.mp4" width="250" height="250" ></embed> </body> </html>
<embed></embed>
属性 | 值 | 描述 |
---|---|---|
height | pixels | 规定嵌入内容的高度。 |
src | URL | 规定被嵌入内容的 URL。 |
type | MIME_type | 规定嵌入内容的 MIME 类型。 注:MIME = Multipurpose Internet Mail Extensions。 |
width | pixels | 规定嵌入内容的宽度。 |
<embed>标签支持HTML 全局属性
<embed>标签支持HTML 事件属性
如果想了解更多请移步html教程。