flex-grow屬性指定與該容器內的其他項目相比,該項目將增長多少。換句話說,與同一個容器中存在的其他項目相比,它是項目成長的能力。
注意:如果容器中的物料不是柔性物料,則flex-grow屬性將不會影響該物料。
用法:
flex-grow:number| initial| inherit;
屬性值:
- number:一個數字,用於定義商品與其他靈活商品相比的增長方式。
- initial:它將值設置為默認值。
- inherit:它從其父元素繼承屬性。
例:在這裏,我們將看到在單個容器中有5個div,我們將應用flex-grow:在第二個div上,該div與其他4個div相比將增長。我們可以將flex-grow應用於與該div的寬度相比將增長div的同一容器中的任何文檔,flex-grow屬性將幫助該div與該容器中的其他項目相比增長。
<!DOCTYPE html>
<html>
<head>
<title>
CSS | flex-grow Property
</title>
<style>
#main {
width:350px;
height:100px;
border:1px solid black;
display:-webkit-flex;
display:flex;
color:white;
text-align:center;
}
h1 {
color:#009900;
font-size:42px;
margin-left:50px;
}
h3 {
margin-top:-20px;
margin-left:50px;
}
#main div:nth-of-type(1) {
flex-grow:1;
}
#main div:nth-of-type(2) {
flex-grow:5;
}
#main div:nth-of-type(3) {
flex-grow:1;
}
#main div:nth-of-type(4) {
flex-grow:1;
}
#main div:nth-of-type(5) {
flex-grow:1;
}
</style>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h3>The flex-grow:number</h3>
<!-- Making 5 divs in main -->
<div id="main">
<div style="background-color:#009900;">
Sql</div>
<div style="background-color:#00cc99;">
Python</div>
<div style="background-color:#0066ff;">
Java</div>
<div style="background-color:#66ffff;;">
C++</div>
<div style="background-color:#660066;">
C#</div>
</div>
</body>
</html>
輸出:
支持的瀏覽器:CSS |下麵列出了flex-grow屬性:
- 穀歌瀏覽器29.0
- Internet Explorer 11.0
- Mozila Firefox 28.0
- Opera 17.0
- Safari 9.0
相關用法
- HTML Style flexGrow用法及代碼示例
- CSS transition-property用法及代碼示例
- CSS nav-up用法及代碼示例
- CSS all屬性用法及代碼示例
- CSS nav-down用法及代碼示例
- CSS right屬性用法及代碼示例
- CSS top屬性用法及代碼示例
- CSS nav-right用法及代碼示例
- CSS resize屬性用法及代碼示例
- CSS clear屬性用法及代碼示例
- CSS zoom屬性用法及代碼示例
- CSS nav-index用法及代碼示例
- CSS columns屬性用法及代碼示例
- CSS clip屬性用法及代碼示例
- CSS overflow-y屬性用法及代碼示例
注:本文由純淨天空篩選整理自Sabya_Samadder大神的英文原創作品 CSS | flex-grow Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。