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.
大家好,我在引导程序中有一个基本的轮播,但是当我调整到移动视图的大小时,突然左右两边出现了一个排水沟?有谁知道如何阻止这种情况发生!非常感谢您的帮助。
我认为您需要像这样更改身体填充物..
@media (max-width: 767px) { body { padding-left: 0; padding-right: 0; } }
演示:http ://bootply.com/59900
您将需要在您的 CSS(或多个)中创建一个媒体查询来完成此操作。
这是一个示例,说明如何以“移动”分辨率从正文中删除填充和边距。
@media (max-width: 767px) { body{ padding: 0; margin: 0; } }