styleditor.net styleditor.net styleditor.net styleditor.net עברית accent-coloralignalignment-baselineallanchoranimationappearanceaspect-ratiobackdrop-filterbackface-visibilitybackgroundbaselineblock-sizeborderbottomboxbreakcaption-sidecaretclearclipcolorcolumncolumnscontaincontainercontentcornercountercursorcxcyddirectiondisplaydominant-baselinedynamic-range-limitempty-cellsfield-sizingfillfilterflexfloatfloodfontforced-color-adjustgapgridheighthyphenatehyphensimageime-modeinitial-letterinline-sizeinsetinteractivityinterestinterpolate-sizeisolationjustifyleftletter-spacinglighting-colorlinelistmarginmarkermaskmathmaxminmix-blend-modeobjectoffsetopacityorderorphansoutlineoverflowoverlayoverscrollpaddingpagepaint-orderperspectiveplacepointer-eventspositionprint-color-adjustquotesrreadingresizerightrotaterowrubyrulerxryscalescrollscrollbarshapespeakstopstroketab-sizetable-layouttexttimelinetoptouch-actiontransformtransitiontranslatetrigger-scopeunicode-bidiuser-selectvector-effectvertical-alignviewvisibilitywhitewidowswidthwill-changewordwriting-modexyz-indexzoom

The CSS Propertie pointer-events

The pointer-events property determines when an element can be a pointer event target (mouse, touch). For SVG, you can target only the painted area (visiblePainted), the bounding box, specific fill or stroke, or disable completely (none). .overlay { pointer-events: none; } svg path.hit-only-fill { pointer-events: visibleFill; } autoDefault behavior — same as visiblePainted in SVG, receives events in HTML (default).noneElement isn't a pointer-event target — events pass through to elements below.allElement is always a target — even with visibility:hidden or no fill/stroke.visibleTarget only when visibility=visible (regardless of fill/stroke).visiblePaintedTarget only when visibility=visible AND fill/stroke aren't none.visibleFillTarget only when visibility=visible and pointer is over the fill.visibleStrokeTarget only when visibility=visible and pointer is over the stroke.paintedTarget only when fill/stroke aren't none (regardless of visibility).fillTarget only when pointer is over the fill (regardless of visibility or fill value).strokeTarget only when pointer is over the stroke.bounding-boxTarget when pointer is over the bounding box of the element. SVG 2 Editor's Draft W3CMDN click on elements Show all code Edit CSS online The plugin that remembers hundreds of CSS items for you Every CSS property — in a live demonstration The bilingual CSS reference
definitionexamplessyntaxmodulespecificationsourcesvisual demonstration