So I have this:
.menu {
display: flex;
align-items: center;
justify-content: center;
/* flex-wrap: wrap; → I want this only when the children reach their min-width, to avoid horizontal scrolling */
}
.menu-title {
flex-shrink: 0;
}
.menu-item {
flex: 0 1 auto;
min-width: 10rem;
}
.menu-link {
padding: 0 1rem;
}
/* Demo purpose */
html,
body {
margin: 0;
padding: 0;
}
.menu {
margin: 2rem;
}
.menu-title {
margin-right: 1rem;
}
.menu-link {
display: flex;
position: relative;
text-decoration: none;
align-items: center;
}
.menu-icon {
display: block;
width: 2em;
height: 2em;
flex-shrink: 0;
margin-right: 0.5em;
background-color: #eee;
}
<div class="menu">
<div class="menu-title">Menu:</div>
<div class="menu-item"><a class="menu-link" href=""><span class="menu-icon"></span><span class="menu-text">A menu entry</span></a></div>
<div class="menu-item"><a class="menu-link" href=""><span class="menu-icon"></span><span class="menu-text">A very very very very long menu entry that is should be on two lines</span></a></div>
<div class="menu-item"><a class="menu-link" href=""><span class="menu-icon"></span><span class="menu-text">A quite long menu entry</span></a></div>
<div class="menu-item"><a class="menu-link" href=""><span class="menu-icon"></span><span class="menu-text">A menu entry that is a bit longer</span></a></div>
</div>
<div class="menu">
<div class="menu-title">Menu:</div>
<div class="menu-item"><a class="menu-link" href=""><span class="menu-icon"></span><span class="menu-text">A two items menu entry</span></a></div>
<div class="menu-item"><a class="menu-link" href=""><span class="menu-icon"></span><span class="menu-text">I should have put some lerem ispum at a moment right?</span></a></div>
</div>
<div class="menu">
<div class="menu-title">Menu:</div>
<div class="menu-item"><a class="menu-link" href=""><span class="menu-icon"></span><span class="menu-text">A menu entry, but yeah you got it</span></a></div>
</div>
I want flex items to be exactly how they behave right now: only one line, shrink when they need, so the text goes on 2 lines, and grow when they can till their normal 'inline' width.
But they have a min-width
, which create an horizontal scrolling at a point. And at this point, I'd like the last one to go on a new line: I want the wrap
behavior, but not before they reach their min-width because I want them to shrink before.
The only way I managed to make it work, is by adding a wrap on .menu
and allow items to grow, but when there's only one item, the render is not right (I still want the max width to be content width).
https://jsfiddle.net/joanva/9zgn3hcm/30/
(initial: https://jsfiddle.net/joanva/9zgn3hcm/)