type
status
date
slug
summary
tags
category
icon
password
URL
Sep 1, 2022 09:23 AM
Sass
动态编写css语言的工具,通过sass可以实现类似于后端语言的方式
npm安装
npm install -g sass
sass的编译
sass input.scss output.css
sass --watch input.scss output.css
编译时生成不同的样式 —style
sass —style 样式的属性值 sass文件名:生成的css文件名
- nested嵌套缩进的css代码,它是默认值
- expanded没有缩进的,扩展的css代码
- compact简洁格式的css代码
- compressed压缩后的css代码
常用方法
变量声明
计算功能
嵌套功能
&嵌套
继承
mixin
导入
Git
基本
Git鼓励大量使用分支:
查看分支:
git branch
创建分支:
git branch <name>
切换分支:
git checkout <name>
或者git switch <name>
创建+切换分支:
git checkout -b <name>
或者git switch -c <name>
合并某分支到当前分支:
git merge <name>
删除分支:
git branch -d <name>
标签
- 命令
git tag <tagname>
用于新建一个标签,默认为HEAD
,也可以指定一个commit id;
- 命令
git tag -a <tagname> -m "blablabla..."
可以指定标签信息;
- 命令
git tag
可以查看所有标签。