runoops.com

HTML 参考手册 第55页

HTML fieldset 标签

阅读(1591)

实例 Run this code » 对表单中的相关元素进行分组: <form> <fieldset> <legend>Personalia:</legend> Name: <input...

HTML fieldset name 属性

阅读(1842)

实例 Run this code » 带有 name 属性的 <fieldset>: <fieldset name="personalia">   Name: <input type="text"><...

HTML fieldset form 属性

阅读(1299)

实例 Run this code » 位于 form 表单外的 <fieldset> 元素(但仍然属于 form 表单的一部分): <form action="demo_form.html" method="get" id...

HTML fieldset disabled 属性

阅读(1475)

禁用一组相关的表单元素: 实例 Run this code » <fieldset disabled>   <legend>Personalia:</legend>   Name: <input t...

HTML embed 标签

阅读(1623)

实例 Run this code » 嵌入图片: <embed type="image/jpg" src="https://static.runoops.com/images/runoops-logo.png" width="258"...

HTML embed width 属性

阅读(1100)

一个高度和宽度为 200 像素的 flash 动画: 实例 Run this code » <embed src="helloworld.swf" width="200" height="200"> 浏览器支持 所有主流浏览器都...

HTML embed type 属性

阅读(1085)

一个嵌入的带 MIME 类型的 flash 动画: 实例 Run this code » <embed src="helloworld.swf" type="application/x-shockwave-flash"> 浏览器...

HTML embed src 属性

阅读(1069)

一个嵌入的 flash 动画: 实例 Run this code » <embed src="helloworld.swf"> 浏览器支持 所有主流浏览器都支持 src 属性。 定义和用法 src 属性规定要嵌入的外部文件的地址...

HTML embed height 属性

阅读(939)

一个高度和宽度为 200 像素的 flash 动画: 实例 Run this code » <embed src="helloworld.swf" width="200" height="200"> 浏览器支持 所有主流浏览器都...

HTML em 标签

阅读(1653)

实例 Run this code » 对文档中的文本进行格式化: <em>强调文本</em> 浏览器支持 所有主流浏览器都支持 <em> 标签。 标签定义及使用说明 <em> 标签是一个短语标...