CSS marker-mid Property Reference
The CSS marker-mid property is a standard property in Scalable Vector Graphics. Review its formal syntax, computed behavior, and practical declarations.
Updated 2026-08-12
marker-mid overview
The CSS marker-mid property is a standard property in Scalable Vector Graphics. Review its formal syntax, computed behavior, and practical declarations.
The computed value normally inherits from the parent element when no declaration wins the cascade.
Syntax and formal definition
| Field | Value |
|---|---|
| Formal syntax | none | <url> |
| Initial value | none |
| Applies to | limitedSVGElementsShapes |
| Inherited | Yes |
| Percentages | no |
| Computed value | asSpecifiedURLsAbsolute |
| Animation type | discrete |
| Media | visual |
| Specification group | Scalable Vector Graphics |
| Status | Standard |
Practical examples
These declarations demonstrate valid ways to set marker-mid. The initial and inherit global keywords remain available even when a property-specific value is preferable.
CSS
.reset-example {
marker-mid: initial;
}
.inherit-example {
marker-mid: inherit;
}
@supports (marker-mid: initial) {
.supported {
marker-mid: initial;
}
}