# bi.horizontal #### 水平流式布局 {% method %} [source](https://jsfiddle.net/fineui/oj7y7q3o/) {% common %} ```javascript BI.createWidget({ type: 'bi.horizontal', element: "#wrapper", items: [{ type: "bi.text_button", cls: "layout-bg1", text: "这里设置了lgap,rgap,tgap,bgap", height: 30, width: 200 }, { type: "bi.text_button", cls: "layout-bg2", text: "这里设置了lgap,rgap,tgap,bgap", height: 30, width: 200 }] }); ``` {% endmethod %} ## API ##### 基础属性 | 参数 | 说明 | 类型 | 可选值 | 默认值 | :------ |:------------- | :----- | :----|:---- | columnSize | 每列宽度所组成的数组 | array | — | [ ] | | verticalAlign | 元素的垂直对齐方式 | string | 参考相关css属性 | "middle" | | scrollx | 设置水平方向是否有滚动条 | boolean | true,false | true | ---