DEV Community

Discussion on: How to Create an Animated SVG Face With CSS

Collapse
 
jh3y profile image
Jhey Tompkins

If you set a solid background color to the SVG and then set the overflow to visible. You can see more clearly which parts of the SVG the viewBox is showing 👍

svg {
  background-color: red;
  overflow: visible;
}
Enter fullscreen mode Exit fullscreen mode