Reputation: 307
I have this image and I want to display it in web page with the regtangles as drop down menu
do you have any idea to do this without putting images in background with css
Upvotes: 0
Views: 40
Reputation: 128776
You can use the HTML map
and area
tags to declare preset areas on the image: http://www.htmlquick.com/reference/tags/area.html
The drop downs could then be applied to the click event of the area.
<map>
<area shape="rect" coords="0, 1, 2, 3" onclick="dropdownClickEvent">
</map>
Upvotes: 1