Questions tagged as 'flexbox'

2
answers

How to "break" div into two columns?

I'm using WordPress, my Blog section is organized as follows: Iamsimplyusing{display:flex;justify-content:space-between;}whichinthecasetheresultisliketheoneinthefirstexample.TheresultIwanttoachieveis: Ihavenotcreatedtwodivsforcontentbecauset...
asked by 26.04.2018 / 15:55
2
answers

Grid styling for gallery using flex display

Well, I'm trying to create a gallery, in the template below, however, I need to use display:flex , how can I accomplish this? I thought about using float, but I remembered that the flex display ignores any float: /     
asked by 08.09.2017 / 21:09
2
answers

What's the difference and when to use Flexbox or CSS Grid?

We first had Flexbox as a new solution for building responsive layouts. More precisely on the grids part. Now comes the CSS Grid . My question is: What's the difference between the two? When should I use 1 instead of the other? For building g...
asked by 24.05.2016 / 22:25
1
answer

FlexBox + CSS GRID

I would like to know if there is any possibility of using CSSGrid with FlexBox. display:grid; display:flex; I'm talking about using both in the same project, if not, which one would you recommend me to use? You can give an example of how to...
asked by 05.09.2018 / 05:12
1
answer

fieldset with flex-wrap does not work correctly in Chrome

I'm using the CSS property flex-wrap in some <div> so I can show them or hide them without breaking the flow of the layout. But I noticed that when my container is a <fieldset> , wrap does not happen in Google Chrome...
asked by 18.09.2018 / 20:24
1
answer

bootstrap or grid-template

Flexbox , Grid-template , or flexbox . p> I have this doubt because when you see the websites that used Bootstrap the code stays in class <div class="row"> <div class="col col-md-4"></div> <div class="col col-md-...
asked by 06.11.2017 / 23:34
1
answer

Flexbox replaces GRID?

I've been taking a look at the flex properties, and have I realized that they do the same thing as the grid or am I wrong? If so, what is the difference between them? When should I use one or the other?     
asked by 05.10.2016 / 21:38
3
answers

Arrange divs in blocks one over the other?

I'd like to organize my divs in column form, but not side by side, but rather one over the other. Normally when using float: left or display: inline-block the elements are placed side by side up to the size limit, and then a new li...
asked by 19.07.2018 / 00:48
1
answer

Flexbox leaving empty spacing

I'm studying flexbox and decided to create a menu, everything works fine, but it's getting a space without me having it, so I know flex: 1 occupies all space, but that's not what's happening. > Problem photo:   Code:HTML<ulclass="nav">...
asked by 19.10.2018 / 14:01
1
answer

Flexbox: Is it possible to force 100% width on a div with space-between daughter in parent?

I'm having the following problem, I have a parent div encompassing three elements, and it has the css: .pai{ display:flex; justify-content:space-between; width:400px; } But I wanted the first child to occupy 100% of the div and...
asked by 24.08.2017 / 15:02