Matt Stow
Matt Stow
Does it happen on the demo page? http://mattstow.com/experiment/responsive-image-maps/rwd-image-maps.html If not, then you'll have to provide a reduced test case that reproduces the issue.
Hmmm. I'm not sure. I'd recommend that you make the image responsive across all breakpoints: ``` img { height: auto; max-width: 100%; } ``` and remove the `width: 100%` in...
% values aren't valid values for img attributes. They need to be integer pixels
The problem is that it uses those dimensions to perform the calculations
I'll consider it. Thanks
Sorry, but if you can't provide a Fiddle of all the code, then I can't help. I cannot debug screenshots On Nov 2, 2013 4:24 AM, "desmondsph" [email protected] wrote: >...
I wouldn't put padding directly on an image. In fact, in the 15 years I've been a front-end dev, I never have; it just seems too unpredictable imo. I'd suggest...
Hey. Would you like to change it to http://www.w3.org/TR/html-markup/img.html instead? Thanks!
What "doesn't work" with them?
The `name` attribute is what makes an image map work. The spec says: > The name attribute gives the map a name so that it can be referenced. The attribute...