Update text style doc for "word wrap"
diff --git a/docs/docs/styles/text-styles.md b/docs/docs/styles/text-styles.md
index 16a773c..ad0248d 100644
--- a/docs/docs/styles/text-styles.md
+++ b/docs/docs/styles/text-styles.md
@@ -54,3 +54,6 @@
 
 ### line-height
 `line-height`: <length> The line height of every line in the text. `line-height` is the space between top and bottom.![line-height](http://i.stack.imgur.com/LwZJF.png) There is no relationship between `line-height` and `font-size`, as `line-height` is restricted by top and bottom, `font-size` is interpreted by glyph. Usually but not always, `line-height` and `font-size` with the same value will cause the text clipped.
+
+### word-wrap
+`word-wrap`:<string> `break-word` | `normal` | `anywhere`. This property determins word wrap mode. For Weex, `anywhere` means clipping at character boundaries, other values or by default we break at word boundaries.
diff --git a/docs/zh/docs/styles/text-styles.md b/docs/zh/docs/styles/text-styles.md
index 25d1e1a..80d6571 100644
--- a/docs/zh/docs/styles/text-styles.md
+++ b/docs/zh/docs/styles/text-styles.md
@@ -46,4 +46,7 @@
 `lines {number}`: 正整数,指定最大文本行数,默认值为0,表示不限制最大行数。如果文本不够长,实际展示行数会小于指定行数。
 
 ### line-height
-`line-height {length}`:正整数,每行文字高度。`line-height`是 top 至 bottom 的距离。![line-height](http://i.stack.imgur.com/LwZJF.png)`line-height`与`font-size`没有关系,因为`line-height`被 top 和 bottom 所限制,`font-size` 被 glyph 所解析。`line-height`和`font-size`相等一般会导致文字被截断。
\ No newline at end of file
+`line-height {length}`:正整数,每行文字高度。`line-height`是 top 至 bottom 的距离。![line-height](http://i.stack.imgur.com/LwZJF.png)`line-height`与`font-size`没有关系,因为`line-height`被 top 和 bottom 所限制,`font-size` 被 glyph 所解析。`line-height`和`font-size`相等一般会导致文字被截断。
+
+### word-wrap
+`word-wrap`:<string> `break-word` | `normal` | `anywhere`. 对 Weex 来说 `anywhere` 表示在以字符为最小元素做截断换行,其它值或不指定该属性,都以英文单词为单位进行换行。
\ No newline at end of file