James Jeffery
James Jeffery

Reputation: 12599

Stop layout expanding beyond 940px

Is it possible to stop the layout from expanding beyond 940px?

I have certain elements that mess up beyond 940px. I still need the layout to be responsive for mobile, just anything device bigger than 940px doesn't need bigger items.

Upvotes: 0

Views: 327

Answers (2)

jmingov
jmingov

Reputation: 14003

try the CSS/Properties/max-width

body {
   max-width: 940px;
}

Upvotes: 3

gteh
gteh

Reputation: 751

would need to see your code, however setting max-width:940px; to the element will do it.

This will prevent it from expanding past 940 but still be responsive for mobile.

Upvotes: 0

Related Questions