6 ms·
Please read my comment above, also here's how the above "nesting" compiles to: .compose-form .compose-form__modifiers .compose-form__upload-description input::
by redmaniack 8y ago
Please read my comment above, also here's how the above "nesting" compiles to:
.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder {
opacity: 1;
}
- Raphmedia 8y agoWho need easy to read post-build selectors in the age of source maps? Much better to have a file that is easier to read before the build.
- nailer 8y agoI did. .compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder { opacity: 1; } That looks like BEM, with all the underscores and modifiers. Proper nested SASS would look like: .compose-form .upload-description input::placeholder { opacity: 1; } Scoped CSS would look like: .compose-form-abc123 .however-deep-or-shallow-you-want { opacity: 1; }