html area标签用于带有可点击区域的图像映射,area元素总是嵌套在
html area标签怎么用?
作用:带有可点击区域的图像映射
说明:
中的 usemap 属性可引用
注释:
标签定义图像映射中的区域(注:图像映射指得是带有可点击区域的图像)。area 元素总是嵌套在
html area标签 示例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <img src="http://www.php.cn/tpl/Index/Static/img/banner7.jpg" border="0" usemap="#studymap" alt="study" /> <map name="studymap" id="studymap"> <area shape="circle" coords="180,139,14" href ="http://www.php.cn" /> <area shape="circle" coords="129,161,10" href ="http://www.php.cn" /> <area shape="rect" coords="0,0,110,260" href ="http://www.php.cn" /> </map> </body> </html>
以上是html area标签怎么用的详细内容。更多信息请关注PHP中文网其他相关文章!