0

特定の 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>
4

1 に答える 1

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>
于 2013-03-01T14:20:29.307 に答える