Github user cxfeng1 commented on a diff in the pull request:
https://github.com/apache/incubator-weex-site/pull/9#discussion_r157476787
--- Diff: source/references/components/web.md ---
@@ -6,144 +6,103 @@ order: 8.16
version: 2.1
---
-# <web>
<span class="weex-version">v0.5+</span>
-Use web component to display any web content in the weex page. TheÂ
`src`attribute is used to specify a special source. You also can useÂ
`webview`Â module to control some web operation such as goBack,goForward and
reload. see [webview module](../modules/webview.html).For example,You can use
web component and webview module to assemble a browser.
+`<web>` is used to display web content that specified by `src` attribute
in weex page. You also can use `webview` module to control WebView behavior
such as goBack, goForward and reload, See [webview
module](../modules/webview.html) for more infomation.
-## Child Components
+## Basic Usage
-This component supports no child components.
+> **Note:** `<web>` does not support any nested child components, and the
style attributes of `width` and `height` must be specified, otherwise it won't
work.
--- End diff --
Why the style attributes must be specified, do you mean `src` ?
---