diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.18/text01.html" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.18/text01.html"
new file mode 100644
index 0000000000000000000000000000000000000000..4b98edb45c507620c1efd969e46b06ce0863162d
--- /dev/null
+++ "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.18/text01.html"
@@ -0,0 +1,190 @@
+
+
+
+
+
+ Document
+
+
+
+ white-space
+ 规定段落中的文本不进行换行:
+
+ -
+
white-space: normal
+ 默认 空白会被浏览器忽略。
+
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+
+
+ -
+
white-space: nowrap
+ 文本不会换行,文本会在在同一行上继续,直到遇到 br 标签为止。
+
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+
+
+ -
+
white-space: pre;
+ 空白会被浏览器保留。其行为方式类似 HTML 中的 pre 标签。
+
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+
+
+ -
+
white-space: pre-wrap
+ 保留空白符序列,但是正常地进行换行。
+
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+
+
+ -
+
white-space: pre-line
+ 合并空白符序列,但是保留换行符。
+
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+
+
+ -
+
white-space: inherit
+ 规定应该从父元素继承 white-space 属性的值。
+
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+ 这是一些文本。
+
+
+
+
+ word-break
+ 在恰当的断字点进行换行
+
+ -
+
word-break:normal
+ 使用浏览器默认的换行规则。
+
+ This is a veryveryveryveryveryveryveryveryveryvery long paragraph.
+
+
+ -
+
word-break:break-all
+ 允许在单词内换行。
+
+ This is a veryveryveryveryveryveryveryveryveryvery long paragraph.
+
+
+ -
+
word-break:keep-all
+ 只能在半角空格或连字符处换行。
+
+ This is a veryveryveryveryveryveryveryveryveryvery long paragraph.
+
+
+
+
+
+ word-wrap
+ 允许长单词换行到下一行:
+
+ -
+
word-wrap: normal
+ 只在允许的断字点换行(浏览器保持默认处理)。
+
+ This paragraph contains a very long word: thisisaveryveryveryveryveryverylongword. The long word will break and wrap to the next line.
+
+
+ -
+
word-wrap:break-word
+ 在长单词或 URL 地址内部进行换行。
+
+ https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd=%E5%9C%A8%E9%95%BF%E5%8D%95%E8%AF%8D%E6%88%96%20URL%20%E5%9C%
+
+
+
+
+ word-spacing
+ 规定段落中的字间距是多少像素:
+
+ -
+
word-spacing:normal
+ 默认。定义单词间的标准空间。
+
+ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cum, esse tempore quod voluptatum libero rerum.
+
+
+ -
+
word-spacing:length
+ 定义单词间的固定空间。
+
+ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cum, esse tempore quod voluptatum libero rerum.
+
+
+ -
+
word-spacing:inherit
+ 规定应该从父元素继承 word-spacing 属性的值。
+
+ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cum, esse tempore quod voluptatum libero rerum.
+
+
+
+
+
+ letter-spacing:normal
+ 设置 h1 和 h2 元素的字母间距
+
+ -
+
letter-spacing:length
+ 默认。规定字符间没有额外的空间。
+
+
This is header 1
+
+
+ -
+
letter-spacing:
+ 定义字符间的固定空间(允许使用负值)。
+
+
This is header 1
+ This is header 4
+
+
+ -
+
letter-spacing:inherit
+ 规定应该从父元素继承 letter-spacing 属性的值。
+
+
This is header 1
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.19/RGB.html" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.19/RGB.html"
new file mode 100644
index 0000000000000000000000000000000000000000..6441c6ed3020f02c190e2faed91095586d2bac43
--- /dev/null
+++ "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.19/RGB.html"
@@ -0,0 +1,70 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+ 拖动滑块,改变RGB变量:
+
+ R:
+ G:
+ B:
+
+
+
+
\ No newline at end of file
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.19/text02.html" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.19/text02.html"
new file mode 100644
index 0000000000000000000000000000000000000000..d35dc2d723c0a00cdbdf0d0814523f9254a1a719
--- /dev/null
+++ "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.19/text02.html"
@@ -0,0 +1,67 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/1.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/1.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..822fa0b8a5e0733dfcc1bb300ab471122e0d64a6
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/1.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/2.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/2.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..06eec5c5b07385d1ac4d2efcb797a0dede69f13c
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/2.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/3.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/3.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..a990e42b8537b63ca252a04f881ba6e30a965186
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/3.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/4.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/4.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..88d2233145ee590bd1e89f1c63fa666b9d3a06a5
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/4.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/5.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/5.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..c57f062dcb5fd52c1d7b5270ea610aab275c878c
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/5.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/6.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/6.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..626ae560f6ef10c121d78260353aaf6e1e5f0ec8
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/6.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/7.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/7.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..599b0f4b9e492cf7f209c00e9eed0b6561ac4803
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/7.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/8.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/8.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..a2ef2c27a9fb43d32d00f7fe82da4a7f5bf10f84
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/8.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/9.webp" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/9.webp"
new file mode 100644
index 0000000000000000000000000000000000000000..13d34291afb68dd1b0f3565ee5f92a64d6146b03
Binary files /dev/null and "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/9.webp" differ
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/demo.html" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/demo.html"
new file mode 100644
index 0000000000000000000000000000000000000000..2b0d1cec296b2cba6aa3c9fb5aaf6b2562890663
--- /dev/null
+++ "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/11/img/demo.html"
@@ -0,0 +1,33 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/text.html" "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/text.html"
new file mode 100644
index 0000000000000000000000000000000000000000..9047a24224de30b357c2590dc0a72996b7098dfe
--- /dev/null
+++ "b/\344\273\230\350\211\263\347\276\216/HTML5\344\275\234\344\270\232/11.22/text.html"
@@ -0,0 +1,41 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
\ No newline at end of file