Can you help me figure out how to make clickable areas on my HTML5 web page without them overlapping? Here's what I'm trying to do:
I want the red, blue, and green areas to be clickable links, but not overlap. For example, when clicking on the far right edge of the Blue 'B' circle, I don't want the green area to be clicked. Additionally, I'd like the white-space between the links to be inactive.
I've tried using SVG buttons, but I'm having trouble with defining the clickable areas (viewbox?). What would be the best approach to achieve this?
Here's my attempt using SVG...
<a href="#">
<svg>
<path id="button-svg-right" d="M0,100 L100,100 L100,0 L0,0 C27.6142375,0 50,22.3857625 50,50 C50,77.6142375 27.6142375,100 0,100 L0,100 Z"></path>
</svg>
</a>