You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see you are using inline-block on the grid with some negative letter-spacing stuff to remove extra space. Why not just use display:block? I have never seen this trick but, it seems to work fine. Can you point me to where you picked it up?
The text was updated successfully, but these errors were encountered:
inline-block has the most in common with flex in that an inline-block layout gives you the ability to align elements vertically and horizontally. It made sense to use that as a fallback so that older browsers would still be able to have a mostly intact layout where flexbox is not supported.
As for the letter-spacing hack I chose that because in my opinion it is the most reliable hack for inline-block layouts for removing white space between elements. No hacks are ideal obviously but for me it's the one that works the best across as many browsers as possible.
I see you are using inline-block on the grid with some negative letter-spacing stuff to remove extra space. Why not just use display:block? I have never seen this trick but, it seems to work fine. Can you point me to where you picked it up?
The text was updated successfully, but these errors were encountered: