在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
sass安装: 步骤:(window系统) 1、下载RubyInstaller(v2.4.3),运行安装,基本直接next安装,不过有个add to PATH的选项一定要勾选,这样就不用配置环境变量。 2、在开始程序中找到Start Command Prompt with Ruby,如下图 v 3、打开后命令行输入: 1 gem install sass
这时候可能会出现安装不成功的情况或者安装很慢(慢的想打人),因为国内伟大的***原因连接不上导致无法安装 所以就需要替换国内淘宝提供的镜像,依次输入如下代码: 1 gem sources --remove https://rubygems.org 删除原来的资源库位置 2 gem sources -a https://ruby.taobao.org/ 添加新的资源库位置 3 gem sources -u 更新资源库 4 gem sources -l 查看当前资源库 除了淘宝的镜像外再提供几个常用的gem源地址: http://rubygems.org/ http://gems.github.com http://gems.rubyforge.org http://ruby.taobao.org
出现下面红框中文字后表示成功,这时可以输入如下代码查看版本: sass -v
webStorm配置 : File-->Settings-->Tools-->File Watchers,点击右侧加号()添加SCSS
输出参数(Arguments):
有四种取值分别为: // nested #main { color: #fff; background-color: #000; } #main p { width: 10em; } .huge { font-size: 10em; font-weight: bold; text-decoration: underline; } // expanded #main { color: #fff; background-color: #000; } #main p { width: 10em; } .huge { font-size: 10em; font-weight: bold; text-decoration: underline; } // compact #main { color: #fff; background-color: #000; } #main p { width: 10em; } .huge { font-size: 10em; font-weight: bold; text-decoration: underline; } // compressed #main{color:#fff;background-color:#000}#main p{width:10em}.huge{font-size:10em;font-weight:bold;text-decoration:underline}
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论