Increase hover area of SVG element
css, events, hover, javascript, svg
Solution
Increase your Stroke width and make Stroke Opacity to 0. If 0 doesn't work then make it 0.01
Problem
There is an SVG element like this - ``` <path d="M0,5.26429605180997L6.078685485212741,-5.26429605180997 -6.078685485212741,-5.26429605180997Z" transform="translate(100,100)scale(0.8)" style="fill: rgb(0, 0, 0);"></path> ``` Now, this element is so small that hovering over it is very hard. How can I increase the hover area (keeping the area of this element same) so that even if the mouse points about say 2 px away, the hover event gets fired?