(1)改变文本默认方向
<p>改变文本默认方向:123456</p>
<bdo dir="rtl">改变文本默认方向:123456</bdo>
(2)设置可点击的区域
<img src="http://www.w3school.com.cn/i/eg_planets.jpg" border="0" usemap="#planetmap" alt="Planets" />
<map name="planetmap" id="planetmap">
<area shape="circle" coords="180,139,14" href ="venus.html" alt="Venus" />
<area shape="circle" coords="129,161,10" href ="mercur.html" alt="Mercury" />
<area shape="rect" coords="0,0,100,100" href ="sun.html" alt="Sun" />
</map>
如果是'circle'那么coords的前两个参数是圆心的位置,第三个参数是半径
如果是'rect'那么coords的前两个参数和后两个参数分别表示矩形对角的坐标
(3)删除线
<del>被删除文件</del>