DEV Community

Discussion on: Responsive CSS Layouts WITHOUT Media Queries

Collapse
 
mikeliuu profile image
Mike Liu

Hi Kyle,

This is Mike. Thanks for your sharing. I've got a question about navbar, how can I only use grid to make a responsive navbar?

Collapse
 
thealemazing profile image
Alex • Edited

I think you cannot do that, media query is required for navigation bar to became "responsive" as "Hamburger style"

Collapse
 
kylefilegriffin profile image
Kyle Griffin

Either you use media queries to change the column widths as you go down in screen width, or you use minmax on equal size columns to dictate what the smallest width a part of the navbar can be.

It depends on how your navbar will look.

Thanks!