这篇文章将为大家详细讲解有关CSS中的flex-grow属性怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。 定义和用法 flex-grow属性用于设置或
这篇文章将为大家详细讲解有关CSS中的flex-grow属性怎么用,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
定义和用法
flex-grow属性用于设置或检索弹性盒子的扩展比率。
注意:如果元素不是弹性盒对象的元素,则flex-grow属性不起作用。
默认值:0
继承:否
可动画化:是。
版本:css3
javascript语法:
object.style.flexGrow="5"
CSS语法:
flex-grow:number|initial|inherit;
属性值
number一个数字,规定项目将相对于其他灵活的项目进行扩展的量。默认值是0。
initial设置该属性为它的默认值。
inherit从父元素继承该属性。
实例
让第二个元素的宽度为其他元素的三倍:
<!DOCTYPEhtml>
<html>
<head>
<style>
#main{
width:350px;
height:100px;
border:1pxsolid#c3c3c3;
display:flex;
}
#maindiv:nth-of-type(1){flex-grow:1;}
#maindiv:nth-of-type(2){flex-grow:3;}
#maindiv:nth-of-type(3){flex-grow:1;}
#maindiv:nth-of-type(4){flex-grow:1;}
#maindiv:nth-of-type(5){flex-grow:1;}
</style>
</head>
<body>
<divid="main">
<divstyle="background-color:coral;"></div>
<divstyle="background-color:lightblue;"></div>
<divstyle="background-color:khaki;"></div>
<divstyle="background-color:pink;"></div>
<divstyle="background-color:lightgrey;"></div>
</div>
<p><b>注意:</b>InternetExplorer10及更早版本浏览器不支持flex-grow属性。</p>
<p><b>注意:</b>Safari6.1及更新版本通过-WEBkit-flex-grow属性支持该属性。</p>
</body>
</html>
关于“css中的flex-grow属性怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
--结束END--
本文标题: css中的flex-grow属性怎么用
本文链接: https://lsjlt.com/news/89251.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0