flex-grow
Quick Summary for flex-grow
The flex-grow CSS property sets the flex grow factor of a flex item's main size.
Code Usage for flex-grow

<pre class="brush: css notranslate"><code><span class="token comment">/ &lt;number&gt; values /</span> <span class="token property">flex-grow</span><span class="token punctuation">:</span> 3<span class="token punctuation">;</span> <span class="token property">flex-grow</span><span class="token punctuation">:</span> 0.6<span class="token punctuation">;</span> <span class="token comment">/ Global values /</span> <span class="token property">flex-grow</span><span class="token punctuation">:</span> inherit<span class="token punctuation">;</span> <span class="token property">flex-grow</span><span class="token punctuation">:</span> initial<span class="token punctuation">;</span> <span class="token property">flex-grow</span><span class="token punctuation">:</span> revert<span class="token punctuation">;</span> <span class="token property">flex-grow</span><span class="token punctuation">:</span> unset<span class="token punctuation">;</span> </code></pre>

More Details for flex-grow

flex-grow

The flex-grow CSS property sets the flex grow factor of a flex item's main size.

Syntax

/* <number> values */ flex-grow: 3; flex-grow: 0.6;  /* Global values */ flex-grow: inherit; flex-grow: initial; flex-grow: revert; flex-grow: unset; 

The flex-grow property is specified as a single <number>.

Values

<number>

See <number>. Negative values are invalid. Defaults to 0.

Description

This property specifies how much of the remaining space in the flex container should be assigned to the item (the flex grow factor).

The main size is either width or height of the item which is dependent on the flex-direction value.

The remaining space is the size of the flex container minus the size of all flex items' sizes together. If all sibling items have the same flex grow factor, then all items will receive the same share of remaining space, otherwise it is distributed according to the ratio defined by the different flex grow factors.

flex-grow is used alongside the other flex properties flex-shrink and flex-basis, and normally defined using the flex shorthand to ensure all values are set.

Formal definition

Initial value0
Applies toflex items, including in-flow pseudo-elements
Inheritedno
Computed valueas specified
Animation typea number

Formal syntax

<number>

Examples

Setting flex item grow factor

HTML
<h4>This is a Flex-Grow</h4> <h5>A,B,C and F are flex-grow:1 . D and E are flex-grow:2 .</h5> <div id="content">   <div class="box" style="background-color:red;">A</div>   <div class="box" style="background-color:lightblue;">B</div>   <div class="box" style="background-color:yellow;">C</div>   <div class="box1" style="background-color:brown;">D</div>   <div class="box1" style="background-color:lightgreen;">E</div>   <div class="box" style="background-color:brown;">F</div> </div> 
CSS
#content {   display: flex;    justify-content: space-around;   flex-flow: row wrap;   align-items: stretch; }  .box {   flex-grow: 1;   border: 3px solid rgba(0,0,0,.2); }  .box1 {   flex-grow: 2;   border: 3px solid rgba(0,0,0,.2); } 
Result

Specifications

Specification
CSS Flexible Box Layout Module Level 1 # flex-grow-property

See also

CSS Flexbox Guide: Basic Concepts of Flexbox CSS Flexbox Guide: Controlling Ratios of flex items along the main axis `flex-grow` is weird. Or is it? article by Manuel Matuzovic on CSS-Tricks, which illustrates how flex-grow works Select your preferred language English (US)DeutschEspañolFrançais日本語한국어Русский中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote

Do you want to be right or happy? You can’t be both.

Suggests that in many situations - especially in relationships or arguments - insisting on being right can come at the cost of harmony or peace of mind. It implies that prioritizing your ego or the need to win an argument may damage relationships or personal contentment, whereas letting go of that need (even if you’re technically right) may lead to greater happiness.


Gerald Jampolsky
Latest News
## 🚀 AI Giants Hit Bullseye: Anthropic & OpenAI Achieve Product-Market Fit Anthropic and OpenAI have reached a significant milestone, finding product-market fit with their AI technologies, which means their products effectively meet the needs of their customers, driving growth and adoption. This achievement showcases the practical value of their innovations, enabling businesses and individuals to leverage AI for enhanced productivity and efficiency. With this alignment of product and market needs, these companies are poised to transform industries and shape the future of technology.