We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a72873 commit 23773a3Copy full SHA for 23773a3
README.md
@@ -1,2 +1,5 @@
1
# src
2
-common code
+这里边是一些常用的资源或代码片段
3
+
4
+# 加群说明
5
+[JS高级前端开发群加群说明](http://www.cnblogs.com/jikey/p/4426105.html)
css-2.x.md
@@ -0,0 +1,12 @@
+#以下是常用的代码收集,没有任何技术含量,只是填坑的积累。转载请注明出处,谢谢。
+- 文字换行
+```css
+/*强制不换行*/
6
+white-space:nowrap;
7
+/*自动换行*/
8
+word-wrap: break-word;
9
+word-break: normal;
10
+/*强制英文单词断行*/
11
+word-break:break-all;
12
+```
css-3.x.md
0 commit comments