You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(please let me know if I am reading this incorrectly)
Since auto is the value by default, I would like to suggest that it could be omitted from the scrollbar-gutter declaration if the author is using both and/or force.
So, these declarations would be valid:
scrollbar-gutter: both;
scrollbar-gutter: force;
scrollbar-gutter: force both;
scrollbar-gutter: both force;
And their effect would be exactly the same as:
scrollbar-gutter: auto both;
scrollbar-gutter: auto force;
scrollbar-gutter: auto force both;
scrollbar-gutter: auto both force;
The text was updated successfully, but these errors were encountered:
Ah, not quite - the | binds most loosely, so the allowed values are auto by itself, or stable/always, optionally with both and/or force. You can't combine both/force with auto.
The signature of
scrollbar-gutter
(spec) indicates that one ofauto
,stable
oralways
must be present, optionally followed byboth
and/orforce
:(please let me know if I am reading this incorrectly)
Since
auto
is the value by default, I would like to suggest that it could be omitted from thescrollbar-gutter
declaration if the author is usingboth
and/orforce
.So, these declarations would be valid:
And their effect would be exactly the same as:
The text was updated successfully, but these errors were encountered: