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.
如何使我的引导程序无响应?我的一些 div 标签变得响应时出现问题,这会破坏项目的整体外观。
我的目标是当我缩小浏览器窗口时,html 和所有内容的外观都不会改变。
在您的内部 html 宽度周围添加一个包装器/容器 div 一个固定宽度。
例如
<div class="site-container"> // Your html here </div><!-- end site-container --> .site-container { width:1200px; margin:0 auto; }