Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: GridItem 的 h 属性说明 #701

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion website/docs/zh/guide/properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@
* type: `Number`
* required: `true`

标识栅格元素的初始高度,值为`rowHeight`的倍数。
标识栅格元素的初始高度,值为`rowHeight`的自然倍数。
不要使用小数,能正常初始化但同列的其它元素会在拖动时因垂直位移计算不准确而产生错位。
实际显示高度(showHeight)和`h`、`rowHeight`、`margin`的关系表现为:
showHeight = (margin[1] + rowHeight) * h - margin[1]; (margin[1] 表示垂直边距)

### minW

Expand Down