在文本后面创建一个img clickable

时间:2013-03-01 12:44:19

标签: html

我有一个图像(圆形图像),其圆形区域指向某个URL,在该图像上面我有一些文字(一个简单的'< p>'标签)但是问题现在您必须单击该图像而不是文本才能转到URL,当您单击文本时,您只需选择文本,没有别的。

我该如何解决这个问题?

<p>this is the text<br />
that is not clickable, only selectable :( </p>
<img src="circle.png" alt="" usemap="#hitzone" />
<map name="hitzone">
    <area shape="circle" coords="0,0,100" href="#">
</map>

1 个答案:

答案 0 :(得分:1)

您可以尝试:

<p>
    <a href="your url here" style="text-decoration: none; color: black">Click me</a>
</p>
<img src="circle.png" alt="" usemap="#hitzone" />
<map name="hitzone">
    <area shape="circle" coords="0,0,100" href="#">
</map>