html中的区域标记

时间:2010-09-25 08:21:46

标签: html

我的图像宽度为525。我需要在图像的右侧放置一个链接。我知道区域标签更好。但我不知道这个标签。你能不能给我这个

的coords属性

由于

1 个答案:

答案 0 :(得分:0)

区域标记的工作方式如下:http://www.w3schools.com/TAGS/tag_area.asp。但是为什么不使用CSS样式将链接绝对定位在图像上方?

<div>
  <img src="yadda.jpg" />
  <a href="#">blah</a>
</div>

div {
  position: relative;
}

a {
  position: absolute;
  top: 0px;
  right: 0px;
}