runoops.com

参考手册 第58页

HTML optgroup disabled 属性

阅读(1369)

一个被禁用的选项组: 实例 Run this code » <select> <optgroup label="German Cars" disabled> <option value="mercedes"&g...

HTML ol type 属性

阅读(1199)

带有大写罗马数字的有序列表: 实例 Run this code » <ol type="I"> <li>Coffee</li> <li>Tea</li> <li>Mil...

HTML ol start 属性

阅读(1282)

从 "50" 开始的有序列表: 实例 Run this code » <ol start="50"> <li>Coffee</li> <li>Tea</li> <li>...

HTML ol reversed 属性

阅读(1263)

对列表顺序进行降序: 实例 Run this code » <ol reversed> <li>Coffee</li> <li>Tea</li> <li>Milk<...

HTML ol compact 属性

阅读(1153)

在有序的 HTML 列表中使用 compact 属性: 实例 Run this code » <ol compact> <li>Coffee</li> <li>Tea</li> &...

HTML object width 属性

阅读(999)

高度和宽度为 400 像素的 flash 动画: 实例 Run this code » <object data="helloworld.swf" width="400" height="400"></object>...

HTML object vspace 属性

阅读(1094)

顶部和底部边距为 100 像素的对象: 实例 Run this code » <p><object width="150" height="150" data="helloworld.swf" vspace="100"&g...

HTML object usemap 属性

阅读(1034)

使用图像映射的 <object> 元素: 实例 Run this code » <object data="planets.gif" width="145" height="126" usemap="#planetmap"...

HTML object type 属性

阅读(1060)

拥有指定的 MIME 类型的 <object> 元素: 实例 Run this code » <object width="400" height="400" data="helloworld.swf" type="app...

HTML object name 属性

阅读(1051)

带有 name 属性的 <object> 元素: 实例 Run this code » <object data="helloworld.swf" width="400" height="400" name="obj1"&...