What are SASS placeholders and when should you use them?
Description : Purpose and usage of SASS placeholders.
Answer :
SASS placeholders, marked with`%`, are used to define styles that can be extended by other selectors without being included directly in the compiled CSS. They are ideal for abstracting common styles that are shared among multiple selectors. Use them when you need to avoid code repetition while keeping your CSS clean and maintainable.