Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以阻止布局扩展到超过 940 像素?
我有某些超出 940 像素的元素。我仍然需要布局来响应移动设备,任何大于 940 像素的设备都不需要更大的项目。
尝试CSS/属性/最大宽度
body { max-width: 940px; }
需要查看您的代码,但是设置max-width:940px;为元素即可。
max-width:940px;
这将阻止它扩展到超过 940,但仍可响应移动设备。