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
Selectors starting with square brackets like [class*="wp-block"] { … } are common in Gutenberg-enabled Wordpress theme CSS files. (They match any CSS classes starting with "wp-block…" without having to know class names added later.)
However they have a confusing display in the symbols list:
Note: Classical selector (green) works flawlessly and its idention is consistent with code. Square brackets selector (red) kinda works, but first bracket and indention are stripped, which is confusing when one needs to rely on indention structure.
The text was updated successfully, but these errors were encountered:
Selectors starting with square brackets like
[class*="wp-block"] { … }
are common in Gutenberg-enabled Wordpress theme CSS files. (They match any CSS classes starting with "wp-block…" without having to know class names added later.)However they have a confusing display in the symbols list:
Note:
Classical selector (green) works flawlessly and its idention is consistent with code.
Square brackets selector (red) kinda works, but first bracket and indention are stripped, which is confusing when one needs to rely on indention structure.
The text was updated successfully, but these errors were encountered: