runoops.com

HTML 参考手册 第23页

HTML video autoplay 属性

阅读(1145)

设置为自动播放的 video 元素: 实例 Run this code » <video controls autoplay> <source src="movie.mp4" type="video/mp4"> &l...

HTML ul type 属性

阅读(1086)

在无序列表中使用 type 属性: 实例 Run this code » <ul type="square">   <li>Coffee</li>   <li>Tea</li>  ...

HTML ul compact 属性

阅读(1139)

在无序列表中使用compact属性: 实例 Run this code » <ul compact>   <li>Coffee</li>   <li>Tea</li>   <...

HTML track srclang 属性

阅读(902)

带有两个字幕轨道的 video 元素: 实例 <video width="320" height="240" controls>   <source src="forrest_gump.mp4" type="video/m...

HTML track src 属性

阅读(963)

带有两个字幕轨道的 video 元素: 实例 <video width="320" height="240" controls>   <source src="forrest_gump.mp4" type="video/m...

HTML track label 属性

阅读(849)

带有两个字幕轨道的 video 元素: 实例 <video width="320" height="240" controls>   <source src="forrest_gump.mp4" type="video/m...

HTML track kind 属性

阅读(856)

带有两个字幕轨道的 video 元素: 实例 <video width="320" height="240" controls>   <source src="forrest_gump.mp4" type="video/m...

HTML track default 属性

阅读(910)

下面是一个 video 元素,其中的两个字幕之一是默认的: 实例 <video width="320" height="240" controls>   <source src="forrest_gump.mp4" typ...

HTML tr valign 属性

阅读(1263)

带有不同垂直对齐行的 HTML 表格: 实例 Run this code » <table border="1" style="height:200px">   <tr valign="middle">     &l...

HTML tr charoff 属性

阅读(1043)

把第二行和第三行的内容与 "." 字符向右两个字符的位置对齐: 实例 Run this code » <table border="1">   <tr>     <th>Month</th> ...