-
Notifications
You must be signed in to change notification settings - Fork 0
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
.grid-bottom
classes are flexbox?
#2
Comments
It’s likely at some point that I switch to using my grid generator, “Gridifier”. (I fell like I mention and show it in one of the videos but can't remember which one.) The videos show the basics of how to set up a responsive grid but when making websites I almost always just use the generated version. https://thomasjbradley.github.io/gridifier/ It uses a combination of |
Yes I noted that you use a generator, however I'm implementing everything by hand and need to thoroughly understand how the mechanics of this work. I've actually transcribed most of your modular videos to notes - and have converted this grid system into a Sass framework I'm building. I'm a bit stuck on this issue right now, its key to getting grid units to reliably move vertically inside grid rows. How are exactly are you using |
You can definitely get the units to move to the bottom and the top using The key is to set the This is similar to how Yahoo’s Pure framework's grids work: http://purecss.io/grids/ |
Great! That works well and I was able to finish the tutorial from there with few issues. Here's an excellent explanation of how this method works: http://blog.purecss.io/post/60789414532/how-we-improved-grids-in-pure-030 |
At 8:55 mins into the video, you start working on moving the main nav down to the bottom of the header. To do that you reference the .
grid-bottom
class. I took notes on your entire modular code series, and I didn't recall seeing anything about this. So I went to the code here on the repo and found this:I brought these classes into the demo project i am using to work this and nothing happens for me, the nav does not move.
First thing that strikes me is that these are flexbox classes. I don't recall you mentioning that flex-box is necessary to get this grid system to work. Also, I'd prefer not to use flexbox until compatibility issues get better -- and definitely not without a strong fallback.
Do you have a more conventional strategy for moving these items vertically in the grid? ie what is the most widely supported responsive and reliable way to make this happen - thanks ..
The text was updated successfully, but these errors were encountered: