FlexBox vs Media Query

Hi there. I need a little assistance.

I want to create three (3) columns with equal height. I done this with flexbox. But use of flex box disabling default margin and media queries. How can i save default values for media queries and column margin. Using flexbox also disable image responsive.

Sorry for my english )

Hi There,

Could you please provide us with your flexbox CSS you’re using? You should add the flex-flow: wrap; to your custom CSS as well.

By default there is no bottom margin for the columns, you have to add the custom CSS for small screen sizes:

.x-column {
  margin-bottom: 15px;
}

For more information about the flexbox, you can take a look at this:

Regards!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.