File tree Expand file tree Collapse file tree 2 files changed +19
-8
lines changed
Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ HTML **超文本标记语言**
214214
215215
216216#### 内嵌框架` <iframe> `
217- ** ` <iframe> ` ** 是 ** ` <body> ` ** 的子标记
217+ ** ` <iframe> ` ** 是 ** ` <body> ` ** 的子标记
218218
219219 ``` html
220220 <body >
@@ -244,8 +244,7 @@ HTML **超文本标记语言**
244244
245245
246246#### 拖拽元素
247-
248- 页面设置了 ` draggable = 'true' ` 属性元素
247+ 页面设置了 ` draggable = 'true' ` 属性元素
249248
250249 + `ondragstart` 拖拽开始时调用
251250 + `ondragleave` **鼠标离开拖拽元素时**调用
@@ -268,15 +267,13 @@ HTML **超文本标记语言**
268267 - `repeat-x` 横向平铺
269268 - `repeat-y` 纵向平铺
270269 + `background-position`,背景定位
271- ....
270+ ....
272271
273272#### ID选择器:规定用` # ` 来定义
274273
275274#### 类选择器:规定用` . ` 来定义
276- **类上样式,id上行为**
277-
278-
279- CSS画三角形
275+ ** 类上样式,id上行为**
276+ CSS画三角形
280277
281278 ```css
282279 .div1 {
@@ -289,3 +286,13 @@ HTML **超文本标记语言**
289286 }
290287 ```
291288
289+ ###### Git
290+ ` git branch ` 查看分支
291+ ` git branch <name> ` 创建分支
292+ ` git checkout/switch <name> ` 切换分支
293+ ` git checkout -b <name>/git switch -c <name> ` 创建并切换分支到
294+ ` git merge <name> ` 合并某分支到当前分支
295+ ` git branch -d <name> ` 删除分支
296+ ` git rebase ` 合并分支
297+ ``
298+
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html >
3+
4+ </ html >
You can’t perform that action at this time.
0 commit comments