To my knowledge border radius should stop mouse events from occurring on the border that was removed.
I have a circular svg/div that still fires actions and :hover events outside of the element. This also occurs for an onClick event of the container in the main project.
Overflow:hidden gives me the wanted result, but it doesn't feel like it solves the issue. It also hides a box-shadow that I want.
I mainly just want to know why this is occurring and a solution to the issue, rather than a workaround.
https://jsfiddle.net/30m8dj5c/1/
svg {
background-color:blue;
/* position: relative; */
/* bottom: 25px; */
border-radius: 1000px;
height: 100%;
width: auto;
/* box-shadow: ; */
}