I'd like to combine a progressive CSS3 background
html {
background: url(background.jpg) no-repeat center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
with an image map,
<map id="imgmap" name="imgmap"><area shape="poly" alt="1" title="1" coords="1" href="1" target="_blank" /><area shape="poly" alt="2" title="2" coords="2" href="2" target="_blank" /> </map>
Please note that I've replaced actual data with numbers 1 and 2.
but I really don't know how to achieve such a thing.
Any help would be greatly appreciated, thanks.