sass Optional 扩展
示例
有时,您可能希望an@extend是可选的,而不要求代码中存在指定的类。
.message-important @extend .message !optional background: red
这将导致以下CSS:
.message-important { background: red; }
免责声明:这在开发过程中非常有用,当您可能尚未编写所有代码并且不希望有错误时,但可能会在生产中将其删除,因为这可能会导致意外结果。
有时,您可能希望an@extend是可选的,而不要求代码中存在指定的类。
.message-important @extend .message !optional background: red
这将导致以下CSS:
.message-important { background: red; }
免责声明:这在开发过程中非常有用,当您可能尚未编写所有代码并且不希望有错误时,但可能会在生产中将其删除,因为这可能会导致意外结果。