我正在使用 Bootstrap ,我需要两个布局宽和盒装。我想轻松切换(改变)之间的布局时,需要的。
编辑:我怎么能这样做:http://htmlstream.com/preview/unify-v1.7/ Beetween boxed and wide layout changing only in body class(boxed-layout container)我不需要切换器。我将把“boxed-layout container”类放到boxed layout的主体中,或者我将从boxed layout的主体中删除boxed-layout container类。但是我不能用bootstap来做这件事,需要帮助。
我怎样才能创建像下面的例子图片宽和框布局?我怎样才能改变布局通过类?
例如:
<html>
<head>
<style>
.main-wrapper-wide {
width: 100% !important;
}
.main-wrapper-boxed {
width: 850px !important;
box-shadow: 0 0 5px #ccc;
}
</style>
</head>
<body>
<div class="main-wrapper-wide or main-wrapper-boxed">
<!-- header content here !-->
<!-- slider here !-->
<!-- site content here !-->
<!-- footer content here start !-->
</div>
</body>
</html>
2条答案
按热度按时间kg7wmglp1#
你是否只想让导航栏和主容器的最大宽度只有800px,然后仍然可以在所有屏幕尺寸上自由调整大小?如果是这样,那么这可能就是你所需要的。
只需使用
max-width:800px;
,您还需要<center>
的div。这是一个**full size Fiddle**。
4sup72z82#
请看下面的代码片段,并尝试将
main-wrapper-wide
类更改为main-wrapper-boxed
:以下是我采取的步骤:
1.首先,我创建了您在 *Bootstrap wide示例 * 中想要的页面。这成为了
main-wrapper-wide
版本。1.之后,我将该类更改为
main-wrapper-boxed
,并通过将其命名为max-width=850px
,为 *Bootstrap boxed示例 * 定制了该类。1.搞定了!
这里有一个Fiddle,以防万一...