在具有 CSS 规则的 div 中使用图像映射
我创建了一个带有图像映射的 div。
<div id="image">
<img src="image.png" usemap="imagemap">
</div>
Css:
#image { float: right; }
但是当我将 CSS 与图像映射一起使用时,它不起作用。问题是什么?
I have created a div with a image I'm using with Image Map.
<div id="image">
<img src="image.png" usemap="imagemap">
</div>
Css:
#image { float: right; }
But when I use the CSS with the Image Map, it doesn't work. What is the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个不错的关于图像地图的教程希望这可以帮助更好地解释该过程。
Here is a decent Tutorial on image maps hope this can help explain the process a little better.
解决了这个问题。
我通过使用并放弃 CSS
I solved the problem by using
and dropped the CSS.
相当不错的教程,尽管映射仅限于矩形。
Pretty decent Tutorial here, although the mapping is limited to rectangles.