HTML <button> 标签的 disabled 属性HTML <button> 标签实例一个被禁用的按钮:<button type="button" disabled="disabled">Click Me!</button> 完整实例【亲自试一试】:<html
HTML <button> 标签的 autofocus 属性HTML <button> 标签实例当页面加载时,会获得焦点的一个按钮:<button type="button" autofocus="autofocus">点击这里</button> 完整实例
HTML <blockquote> 标签的 cite 属性HTML <blockquote> 标签实例下面这个 blockquote 元素中的 cite 属性指定了引用的来源:<blockquote cite="http://www.wwf.org">WWF'
HTML <bdo> 标签的 dir 属性HTML <bdo> 标签实例规定文本方向:<p>Hello world. <bdo dir="rtl">Hello world</bdo></p> 完整实例【亲自试一试】:<!DOCTYPE html><html><body><
HTML <base> 标签的 target 属性HTML <base> 标签实例为页面上所有链接规定默认目标:<head><base target="_blank" /></head><body><a href="http://www.phpcodeweb.com">php
HTML <base> 标签的 href 属性HTML <base> 标签实例为页面上所有相对 URL 规定基准 URL:<head><base href="http://www.phpcodeweb.com/i/" /></head><body><img src="eg_smi
HTML <audio> 标签的 src 属性HTML <audio> 标签实例一个音频播放器:<audio src="song.ogg" controls="controls">Your browser does not support the audio element.</audio
HTML <audio> 标签的 preload 属性HTML <audio> 标签实例设置为预加载的 audio 元素:<audio controls="controls" preload="auto"> <source src="song.ogg" type="audio/ogg
HTML <audio> 标签的 muted 属性HTML <audio> 标签实例被静音的音频:<audio controls muted> <source src="horse.ogg" type="audio/ogg"> <source src="horse.mp3" type
HTML <audio> 标签的 loop 属性HTML <audio> 标签实例设置为循环播放的 audio 元素:<audio controls="controls" loop="loop"> <source src="song.ogg" type="audio/ogg" />
HTML <audio> 标签的 controls 属性HTML <audio> 标签实例带有浏览器默认控件的 audio 元素:<audio controls="controls"> <source src="song.ogg" type="audio/ogg" /> <s
HTML <audio> 标签的 autoplay 属性HTML <audio> 标签实例设置为自动播放的 audio 元素:<audio controls="controls" autoplay="autoplay"> <source src="song.ogg" type="a
HTML <area> 标签的 type 属性HTML <a> 标签实例使用 type 属性规定目标 URL 的 MIME 类型:<map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="Sun" hr
HTML <area> 标签的 target 属性HTML <area> 标签实例带有可点击区域的图像映射:<img src="planets.jpg" border="0" usemap="#planetmap" alt="Planets" /><map name="plane
HTML <area> 标签的 shape 属性HTML <area> 标签实例<img src ="planets.gif" alt="Planets" usemap ="#planetmap" /><map name="planetmap"> <area shape="rect" coords=