Canvas Gridlines - How to Disable

Since <circle> is no custom tag but a general SVG element (which could appear elsewhere), I would be more specific here and target the canvas-background SVG element:

svg.canvas-background {
    display: none;
}
8 Likes