目录

style flexBasis 属性

示例

将弹性项目的初始长度设置为 200 像素:

document.getElementById("myBlueDiv").style.flexBasis = "200px";
亲自试一试 »

描述

flexBasis 属性指定灵活项的初始长度。

笔记:如果元素不是灵活项,则 flexBasis 属性不起作用。


浏览器支持

Property
flexBasis Yes 11.0 Yes 9.0 Yes

语法

返回 flexBasis 属性:

object.style.flexBasis

设置 flexBasis 属性:

object.style.flexBasis = "number|auto|initial|inherit"

属性值

Value Description
number A length unit, or percentage, specifying the initial length of the flexible item(s)
auto Default value. The length is equal to the length of the flexible item. If the item has no length specified, the length will be according to its content
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 汽车
返回值: 一个字符串,表示元素的 flex-basis 属性
CSS版本 CSS3

相关页面

CSS 参考:弹性基础属性

HTML DOM 样式参考:弹性属性

HTML DOM 样式参考:flexDirection 属性

HTML DOM 样式参考:flexFlow 属性

HTML DOM 样式参考:flexGrow 属性

HTML DOM 样式参考:flexShrink 属性

HTML DOM 样式参考:flexWrap 属性