Should we allow scroll-marker-group: before | after on the root element? E.g.
:root {
scroll-marker-group: before;
}
:root::scroll-marker-group {
position: fixed;
top: 8px;
}
This seems like reasonable behavior to me but would be slightly different than on typical overflow divs. In particular, the ::scroll-marker-group can't be a sibling to the content, but will be more like a ::before or ::after pseudo-element being a regular child.
Should we allow
scroll-marker-group: before | afteron the root element? E.g.This seems like reasonable behavior to me but would be slightly different than on typical overflow divs. In particular, the
::scroll-marker-groupcan't be a sibling to the content, but will be more like a::beforeor::afterpseudo-element being a regular child.