我的HTML代码是
<a href="./abc/main.html"><img src="./img/abc.png" class="abc" />
<a href="./color/main.pnhtml"><img src="./img/abc.png" class="color" />
在课堂上=“abc”&amp; class =“color”我已经分别为我的图像abc和颜色的位置定义了css代码。然而,当我将鼠标悬停在abc图像或彩色图像上并单击它时总是打开color / main.html页面,即使我单击abc图像它打开color / main.html页面 请帮助.. !!
答案 0 :(得分:0)
您不会关闭“a”标签。
<a href="./abc/main.html">
<img src="./img/abc.png" class="abc" />
</a>
<a href="./color/main.html">
<img src="./img/abc.png" class="color" />
</a>
有关“a”标签的更多信息: