32

Flexbox ❤️

Comments
  • 2
    One love!
  • 1
  • 4
    I'm on a project targeting future features than present browser compat, poly etc..
    I find myself using grid more than flexbox, even for simple one dimensional layouting.

    .navbar
    display: grid
    grid-template-columns: min-content 1fr min-content
    grid-template-areas: "icon logo burger"
    grid-gap: 6px
  • 1
    @010001111 Grid seems nice, but I've never managed to use it properly. Feels like you need a separate class for every single component.
  • 1
    @010001111 Grid is so cool. I'm about to try and build a responsive layout without too many media queries using minmax() tracks 👍 Really neat feature.
  • 2
    Grid is better, grid is ❤️
  • 1
  • 2
    @D3add3d Both. Flexbox and CSS Grid 👍
  • 2
    @Devnergy well... I really can't find a use for flexbox but sure :D
Add Comment