Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unlimited max-width in responsive CSS

Tags:

css

Can anyone tell me if I can set a "infinite" max-width for doing responsive web design?

Currently I have

@media screen and (max-width: 5000px) { }

But what if one day screen resolution is bigger than 5000?

like image 443
Daniel Williams Avatar asked Feb 03 '15 21:02

Daniel Williams


2 Answers

You could set it to max-width: none; (Initial value) if you want, otherwise just don't set it.

like image 128
Stickers Avatar answered Oct 14 '22 07:10

Stickers


Just remove that clause entirely.

If you don't want a maximum, don't set a maximum.

like image 39
SLaks Avatar answered Oct 14 '22 05:10

SLaks