发表于: 2019-02-25 19:48:20
1 734
1.进一步了解absolute和float
2.初步认识了flex基本语法
3.垂直居中的几种方法 //flex,absolute,vh,inline-block:父伪元素+vertical-align
4.简单的媒体查询
5.background:color url(); //同时生效,color要在前面
6.button,input{outline:none;border:none} //清除默认样式
7.letter-spacing 和 word-spacing 的区别 //汉字用letter-spacing
8.切图还是不太会
9.简单地复习了git:
git config --global user.name ""
git -- global user user.email ""
git init
git status
git add <file>
git commit -m ""
git diff <file>
git log / git log --pretty=oneline/ -p
git checkout commit_id
head 表示当前版本 head^ head^^ head^20
git reset --hard commit_id
git tag -a v1 -m "" commit_id
git branch rich
git checkout -b // 创建并切换至分支
git checkout master
git merge branch_id
git remote add 远程名称 远程地址
git push -u 远程名 分支名
git pull //获取远程更新
评论