Baike.dev
All toolsTrendingOpen sourceNewsSubmit
Log in
< 返回工具列表
S

sass

> 编程语言
开源

Sass makes CSS fun!

15.4K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

Sass makes CSS fun!

      **Sass makes CSS fun again**. Sass is an extension of CSS, adding nested rules, variables, mixins, selector inheritance, and more. It's translated to well-formatted, standard CSS using the command line tool or a plugin for your build system. ```scss $font-stack: Helvetica, sans-serif; $primary-color: #333; body { font: 100% $font-stack; color: $primary-color; } @mixin border-radius($radius) { -webkit-border-radius: $radius; -moz-border-radius: $radius; -ms-border-radius: $radius; border-radius: $radius; } nav { ul { margin: 0; padding: 0; list-style: none; } li { @include border-radius(10px); } a { display: block; padding: 6px 12px; text-decoration: none; } } ``` ## Install Sass You can install Sass on Windows, Mac, or Linux by downloading the package for your operating system [from GitHub] and [adding it to your `PATH`][PATH]. That's all—there are no external dependencies and nothing else you need to install. [from GitHub]: https://github.com/sass/dart-sass/releases [PATH]: https://katiek2.github.io/path-doc/ If you use Node.js, you can also install Sass using [npm] by running [npm]: https://www.npmjs.com/ ``` npm install -g sass ``` **However, please note** that this will install the pure JavaScript implementation of Sass, which runs somewhat slower than the other options listed here. But it has the same interface, so it'll be easy to swap in another implementation later if you need a bit more speed! See [the Sass website](https://sass-lang.com/install) for more ways to install Sass. Once you have Sass installed, you can run the `sass` executable to compile `.sass` and `.scss` files to `.css` files. For example: ``` sass source/stylesheets/index.scss build/stylesheets/index.css ``` ## Learn Sass Check out [the Sass website](https://sass-lang.com/guide) for a guide on how to learn Sass! ## This Repository This repository isn't an implementation of Sass. Those live in [`sass/dart-sass`] and [`sass/libsass`]. Instead, it contains: [`sass/dart-sass`]: https://github.com/sass/dart-sass [`sass/libsass`]: https://github.com/sass/libsass * [`spec/`], which contains specifications for language features. * [`proposal/`], which contains in-progress proposals for changes to the language. * [`accepted/`], which contains proposals that have been accepted and are either implemented or in the process of being implemented. [`spec/`]: https://github.com/sass/sass/tree/main/spec [`proposal/`]: https://github.com/sass/sass/tree/main/proposal [`accepted/`]: https://github.com/sass/sass/tree/main/accepted Note that this doesn't contain a full specification of Sass. Instead, feature specifications are written as needed when a new feature is being designed or when an implementor needs additional clarity about how something is supposed to work. This means many of the specs in `spec/` only cover small portions of the features in question. ### Versioning Policy The proposals in this repository are versioned, to make it easy to track changes over time and to refer to older versions. Every version has a Git tag of the form `proposal..draft-`. A new version should be created for each batch of changes. Every version has a major version, and they may have a minor version as well (indicated `.`). The minor version should be incremented for changes that don't affect the intended semantics of the proposal; otherwise, the major version should be incremented.

核心特点

  • •[spec/], which contains specifications for language features.
  • •[proposal/], which contains in-progress proposals for changes to the
  • •[accepted/], which contains proposals that have been accepted and are either

> 标签

TypeScript

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月9日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言
Baike.dev

baike.dev helps you discover great languages, frameworks, databases, DevOps and cloud-native tools.

Quick links

  • Home
  • All tools
  • Trending
  • Open source

About

  • About us
  • Community
  • News

Contribute

Found a great developer tool? Share it with the community.

Submit a tool
© 2026 baike.dev Developer EncyclopediaUpdated daily · Discover great developer tools