I'm new to this topic and read myself into it. I worked through this guide.
In this guide they say:
The main idea behind the flex layout is to give the container the ability to alter its items' width/height (and order) to best fill the available space.
I want Flexbox to use all available space, but obviously right under 2 there is empty space and also enough space for the element 3.
When I take a look at the philosophy of Flexbox I can see not used but available space in my layout.
Am I doing something wrong in my css or is Flexbox broken?
Layout/Output
CSS
.flex-container {
padding: 0;
margin: 0;
list-style: none;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: flex-start;
-webkit-flex-flow: wrap;
}
.flex-item {
background: tomato;
padding: 5px;
width: 300px;
margin-top: 10px;
line-height: 150px;
color: white;
font-weight: bold;
font-size: 3em;
text-align: center;
}
HTML
<ul class="flex-container">
<li class="flex-item">1111111111 1111111111</li>
<li class="flex-item">2</li>
<li class="flex-item">3</li>
<li class="flex-item">4</li>
<li class="flex-item">5</li>
<li class="flex-item">6</li>
</ul>
Flexbox is primarily a one-dimensional layout mode. It lets you distribute & size elements responsively, in just a single axis (horizontal or vertical), and then it supports basic alignment/stretching in the other axis.
flex-wrap: wrap can make it look two-dimensional, but really it just lets you split your flex items into "lines", where each "line" is like a one-dimension flexbox. And the lines don't overlap (or really interact at all).
So, in your diagram, the "3" element doesn't fill in the empty space because it's in a separate flex line from where the empty space is, and the flex lines cannot overlap.
To achieve what you want in pure CSS, I think you'll need CSS Grid, specifically with grid-auto-flow: dense. This spec is still under active development, though, and browsers have mixed levels of implementation, so it's not ready for use in production websites yet.
Yes, your CSS is slighty wrong
JSFiddle Demo
CSS
.flex-container {
padding: 0;
margin: 0;
list-style: none;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-wrap: wrap; /* here */
}
.flex-item {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
background: tomato;
padding: 5px;
width:300px;
margin-top: 10px;
line-height: 150px;
color: white;
font-weight: bold;
font-size: 3em;
text-align: center;
}
However, on further discussion it appears that what you are trying to achieve is not possible (AFAIK) with flexbox.
I expect element 3 to move under 2, so all the empty space is used
Accordingly, I think a JS solution like Masonry.Js would be the recommended solution.
Related
mocked up an example of my issue (simplified) in this codepen: https://jsfiddle.net/bhuaL0vf/12/
I'm basically unsure of what styles on the styled-link are preventing the open-text from floating right to the end of the row - so that it sits right at the end as opposed to cosied up-beside it. I've re-created this elsewhere with these styles however inline-flex is not necessary there so I am assuming it is to do with that.
TEMPLATE:
<li class="styled-link">
<span class="open-text">Open</span>
List item one
</li>
STYLES:
.styled-link {
display: inline-flex;
align-items: center;
font-size: 12px;
color: #63666a;
}
.open-text {
float: right;
font-size: 14px;
display: block;
margin-right: 35px;
}
Apologies if I'm missing something really obvious, a little unfamiliar with inline-flex.
You can replace inline-flex with flex and justify the flex items using justify-content property to achieve the desired alignment as per your needs.
For example:
.styled-link {
display: flex; /* Replaced inline-flex to flex /*
align-items: center;
font-size: 12px;
color: #63666a;
justify-content: space-between; /* Add space between flex items */
}
/* Removed float */
.open-text {
font-size: 14px;
display: block;
margin-right: 35px;
}
I have a code - https://codepen.io/anon/pen/MQjpBG
It's a simple list with a colored block and text in each li
I need the list to be vertical and the text and block to be vertically aligned.
I'm trying to do this with flex and align-items but the text and block never center exactly
Am I doing something wrong, is there a better way to do this.
.element{
display: flex;
list-style: none;
&__item{
display: flex;
align-items: center;
margin-right: 10px;
&:last-of-type{
margin-right: 0;
}
&-square{
background: red;
//display: block;
display: inline-block;
height: 20px;
width: 20px;
}
&-text{
font-weight: bold;
}
}
}
I want the block and text to fit like so.
The align-items: center; seems to do it but its slightly off, like
There's nothing centering them (in your codepen).
Add this to your code:
.element{
display: flex;
justify-content: center; /* horizontal alignment */
.element__item {
display: flex; /* nested flex container */
align-items: center; /* vertical alignment */
}
revised codepen
Unfortunately, it looks like the issue is a function of the font chosen. Different fonts will have different descender heights (e.g. the tail of a "g") as well as different positioning of the base line relative to the full text box, and it appears that some fonts will have these values set such that they may not be visually centered.
I modified your CodePen example and forcibly set the font-family of the first element to Arial while leaving the second as the default (on Firefox on macOS 10.15/Catalina), and the Arial version definitely looks much more vertically centered:
You may be able to fix this by changing the font used, but obviously this isn't a change that can be made lightly on a large codebase.
To make the list to be vertical, just add "flex-direction"
display: flex;
list-style: none;
flex-direction: column;
For horizontally center aligned:
.element {
justify-content: center;
}
For vertical center alignment of squares and text:
.element__item-square {
vertical-align: middle;
}
.element__item-text {
vertical-align: middle;
}
I'm using flexbox here - http://marcinzalewski.net/exo/ but I can't fix this for IE 11. Even Microsoft Edge is working fine and IE 11 is only version I need to fix.
My flex-container look like this:
.flex-container {
max-width: 1240px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
-webkit-flex-wrap: row wrap;
justify-content: center;
padding: 0;
margin: 0 auto;
list-style: none;
}
And this is my inside elements code:
.offer-element {
width: 250px;
height: 250px;
border-radius: 50%;
margin-top: 60px;
margin-left: 25px;
margin-right: 25px;
}
Now those elements should be centered and fit in few lines, but they all are in the same line and have ~150px instead of 250px each. I tried to add display: -ms-flexbox; but it doesn't work anyway. Normally they are all centered and take 3 lines.
It looks like you're specifying flex-wrap only on webkit. By default flex will fit all items one line. You need to specify flex-wrap: wrap on your container.
IE 11 requires a unit to be added to the third argument, the flex-basis property
https://msdn.microsoft.com/en-us/library/dn254946%28v=vs.85%29.aspx
I have recently been developing a website using flexbox, and have been doing so on Chrome. The site looks perfect on Chrome (and Safari, according to users) however it has some serious issues when viewed on Firefox and IE. I have tried to look online for documentation on which prefixes to include in my CSS and how to make it appear normal on those browsers, but I truly cannot find a summation or tutorial anywhere. Here is a sample of my CSS code, containing flexboxs that do not display correctly on Firefox and IE -
.header {
padding: 12px;
padding-top: 10px;
padding-bottom: 0px;
margin: 0px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
justify-content: space-around;
height: 70px;
background-color: #000000;
}
.header-box {
padding-left: 15px;
padding-right: 15px;
margin: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
align-content: flex-start;
align-items: flex-start;
height: 70px;
width: 1170px;
background-color: #000000;
}
This code is for a header bar along the top of the site. I thought by including the display: -moz-box; and such, that would allow it to be seen on Firefox, but the formatting is messed up in the sense that the box is not centered but instead along the left side of the screen, and the boxes within the header are all along the top of the parent container rather than on the bottom. Thank you for any insight you may have on this problem!
In only works on webkit browsers because you only use
-webkit-flex-flow: row wrap;
You should use the standard
flex-flow: row wrap;
Otherwise, the initial value row nowrap will be used instead.
I am trying to style a li elements to dynamically fit its text content with equal spacing between the li's but cannot seem to accomplish this.
The result currently looks like:
I want the white spaces between the li's to be consistent but the overall li's to be dynamic widths but not exceeding a certain width: (Because there are two different ul's they are styles with different paddings so that is why the space sizes are different between the left menu and right menu, but each li is consistently spaced in the respective ul's)
The css is (arbitrarily):
li{
display: inline-block;
max-width: 95px;
padding: 5px 10px;
etc....
}
I'm trying to accomplish this using css, avoiding JavaScript or html markup if possible. Thank you.
If you want the whitespace between the elements to be the same, ie. smaller headings will have smaller menu items like in your images then you're out of luck. I don't think you can do it without JavaScript.
If you will setting with uniform width menu items then that's fairly easy to accomplish, just set the <li>s to 100%/(number of menu items) and float them.
li {
float:left;
width:14.2857% /* 100/17 */
}
This is optimized for Opera, Chrome, and IE10. Firefox and Safari follow an older Flexbox specification and look best when the lists have a balanced number of items. There's a decent looking fallback for non-Flexbox browsers. You'll likely need to add additional styling to disguise the uneven list heights.
http://codepen.io/cimmanon/pen/HxLvf
nav {
display: -webkit-box;
display: -moz-box;
display: -webkit-flexbox;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
ul {
display: table-cell; /* non-flexbox browsers */
display: -webkit-box;
display: -moz-box;
display: -webkit-flexbox;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-flex: 1;
-moz-box-flex: 1;
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
li {
display: table-cell; /* non-flexbox browsers */
display: -webkit-box;
display: -moz-box;
display: -webkit-flexbox;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-flex: 1;
-moz-box-flex: 1;
-webkit-flex: 1 1 10em;
-ms-flex: 1 1 10em;
flex: 1 1 10em;
width: 10em; /* for old Firefox/Safari */
/* for vertical/center alignment */
-webkit-flex-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-webkit-flex-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
text-align: center;
}
/* pretty it up! */
nav {
background: #99D;
}
ul {
list-style: none;
padding: 0;
}
li {
padding: .5em 1em;
background: white;
border: 1px solid;
}
<nav>
<ul>
<li>Home</li>
<li>Latest Projects</li>
<li>Products & Eco Funding</li>
<li>The Green Deal</li>
</ul>
<ul>
<li>Latest Projects</li>
<li>Job Vacancies</li>
<li>About Us</li>
<li>Contact Us</li>
</ul>
</nav>
The fact that you have 2 lists where you want to equalize the widths of the elements is what makes Flexbox necessary. If you had only a single list, you could simplify the whole thing down to just using display: table on the ul and display: table-cell on the li.