Quantcast
Channel: Active questions tagged flexbox - Stack Overflow
Viewing all articles
Browse latest Browse all 1305

How to prevent flex child from growing whole column width [duplicate]

$
0
0

I have some elements in a column flexbox which is itself a flex element.

When I press a button the content of my last element is changing it's width and becoming the wider element of the flexbox making it wider.I want to prevent that because it's not pretty. The width must not change when I press the button.

See code snippet for clarification.

var thirdDivs = [...document.querySelectorAll('.child.third')];document.getElementById('toggleButton').addEventListener('click', function() {  thirdDivs.map((thirdDiv) => {thirdDiv.classList.toggle('hidden');});});
main{  display: flex;}.container {  display: flex;  flex-flow: column wrap;  border: 1px solid red } .hidden {  display: none; }
<p> I don't want that red box to change size when I press the button. I want the text to be on two different lines</p><button id="toggleButton">Switch</button><main><div class='container'><div class='child first'><p>Some content</p></div><div class='child second'><p>Some more content</p></div><div class='child third'><p>A short text</p></div><div class='child third hidden'><p>A very much more longer text<p></div></div></main>

I tried to play with flex-grow and flex-shrink without success.


Viewing all articles
Browse latest Browse all 1305

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>