# Sass 与 CSS 对比 ## CSS(层叠样式表) 原生的网页样式语言,浏览器直接支持。 ```css .button { background-color: #3498db; color: white; } .button:hover { background-color: #2980b9; } ``` ## Sass(CSS 预处理器) 需要编译成 CSS 才能使用,