-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Class .col with flex-direction: column #173
Comments
Great question! I encourage you to try it out yourself in dev tools to see what I mean. Then come back and tell me your thoughts. Thanks! |
What is the recommended way of doing columns right now? Would love to see an equivalent feature set to some of the other layout systems such as: |
this is really needed, |
- Col's reverse property was a boolean that would apply the 'reverse' class if true. However, there is no support for reverse for columns in flexboxgrid. There is a .col.reverse class defined, but it sets the flex-direction to column-reverse, which has no effect on an element that is not displayed as flex. Also, columns are not given the .col class in the way that rows are given the .row class, so the designation of .reverse on a Col would not even cause these rules to be applied. The .col.reverse class appears to be lint, left over from an abandoned attempt to support columnar flexboxes in the flexboxgrid package. See: kristoferjoseph/flexboxgrid#173
- Col's reverse property was a boolean that would apply the 'reverse' class if true. However, there is no support for reverse for columns in flexboxgrid. There is a .col.reverse class defined, but it sets the flex-direction to column-reverse, which has no effect on an element that is not displayed as flex. Also, columns are not given the .col class in the way that rows are given the .row class, so the designation of .reverse on a Col would not even cause these rules to be applied. The .col.reverse class appears to be lint, left over from an abandoned attempt to support columnar flexboxes in the flexboxgrid package. See: kristoferjoseph/flexboxgrid#173
Hello
I could not find class
.col
withflex-direction: column;
inside. Maybe I missed something, but there is class.col.reverse
withflex-direction: column-reverse
and I thought that class.col
would be a way to implement default vertical flow.Can you advise, please?
Thanks
The text was updated successfully, but these errors were encountered: