通过引导,它看起来像他们支持折叠菜单栏项目的小屏幕。页面上的其他项目是否也有类似的内容?
例如,我有一个与navi -pill浮动正确。在小屏幕上,这会引起问题。我想至少把它放到类似的点击显示更多的下拉列表中。
这在现有的引导框架中是可能的吗?
通过引导,它看起来像他们支持折叠菜单栏项目的小屏幕。页面上的其他项目是否也有类似的内容?
例如,我有一个与navi -pill浮动正确。在小屏幕上,这会引起问题。我想至少把它放到类似的点击显示更多的下拉列表中。
这在现有的引导框架中是可能的吗?
当前回答
您可以为任何模块输入这些模块类后缀,以更好地控制它将在何处显示或隐藏。
.visible-phone
.visible-tablet
.visible-desktop
.hidden-phone
.hidden-tablet
.hidden-desktop
http://twitter.github.com/bootstrap/scaffolding.html滚动至底部
其他回答
新的可见类添加到Bootstrap
超小型设备 手机(<768px)(类名:.visible-xs-block, hidden-xs)
小型设备 片剂(≥768px)(类名:.visible-sm-block, hidden-sm)
介质的设备 桌面(≥992px)(类名:.visible-md-block, hidden-md)
大型设备 桌面(≥1200px)(类名:.visible-lg-block, hidden-lg)
欲了解更多信息:http://getbootstrap.com/css/#responsive-utilities
以下内容在v3.2.0版本已弃用
超小型设备 电话(<768px)(类名:.visible-xs, hidden-xs)
小型设备 片剂(≥768px)(类名:.visible-sm, hidden-sm)
介质的设备 桌面(≥992px)(类名:.visible-md, hidden-md)
大型设备 桌面(≥1200px)(类名:.visible-lg, hidden-lg)
更老的引导
.隐藏电话,.隐藏平板电脑等不受支持/过时。
更新:
在Bootstrap 4中有两种类型的类:
当视口位于给定的断点或更宽时,隐藏元素的hidden-*-up。 Hidden -*- -当视口位于给定的断点或更小时隐藏元素。
此外,对于宽度超过1200px的设备,还添加了新的xl视口。欲了解更多信息,请点击这里。
额外的CSS 从移动视图的所有页面中删除边栏:
@media only screen and (max-width:767px)
{
#secondary {
display: none;
}
}
引导4测试答案:
在中型、大型和超大型设备上隐藏D-block d-md-none。 D-none d-md-block隐藏在小型和超小型设备上。
注意,你也可以通过用d-*-inline-block替换d-*-block来实现内联
旧答案:Bootstrap 4 Alpha
你可以使用.hidden-*-up类来隐藏给定大小或更大的设备 .hidden- mup隐藏在中型,大型和超大型设备上。 同样,.hidden-*-down隐藏在给定大小和更小的设备上 .hidden-md-down隐藏在中型,小型和超小型设备上 可见-*不再是一个选项与bootstrap 4 要只在中型设备上显示,您可以将两者结合起来: 隐藏-sm-down和隐藏-xl-up
有效的大小是:
竖屏模式下的Xs (<34em) 横屏模式下的Sm(≥34em) Md片剂(≥48em) Lg台式机(≥62em) Xl for台式机(≥75em)
这是截至Bootstrap 4, alpha 5(2017年1月)。 更多详情请访问:http://v4-alpha.getbootstrap.com/layout/responsive-utilities/
在引导4.3。x: https://getbootstrap.com/docs/4.3/utilities/display/
在boostrap 4.1中(运行代码片段,因为我从Bootstrap文档中复制了整个表代码):
.fixed_headers { width: 750px; table-layout: fixed; border-collapse: collapse; } .fixed_headers th { text-decoration: underline; } .fixed_headers th, .fixed_headers td { padding: 5px; text-align: left; } .fixed_headers td:nth-child(1), .fixed_headers th:nth-child(1) { min-width: 200px; } .fixed_headers td:nth-child(2), .fixed_headers th:nth-child(2) { min-width: 200px; } .fixed_headers td:nth-child(3), .fixed_headers th:nth-child(3) { width: 350px; } .fixed_headers thead { background-color: #333; color: #FDFDFD; } .fixed_headers thead tr { display: block; position: relative; } .fixed_headers tbody { display: block; overflow: auto; width: 100%; height: 300px; } .fixed_headers tbody tr:nth-child(even) { background-color: #DDD; } .old_ie_wrapper { height: 300px; width: 750px; overflow-x: hidden; overflow-y: auto; } .old_ie_wrapper tbody { height: auto; } <table class="fixed_headers"> <thead> <tr> <th>Screen Size</th> <th>Class</th> </tr> </thead> <tbody> <tr> <td>Hidden on all</td> <td><code class="highlighter-rouge">.d-none</code></td> </tr> <tr> <td>Hidden only on xs</td> <td><code class="highlighter-rouge">.d-none .d-sm-block</code></td> </tr> <tr> <td>Hidden only on sm</td> <td><code class="highlighter-rouge">.d-sm-none .d-md-block</code></td> </tr> <tr> <td>Hidden only on md</td> <td><code class="highlighter-rouge">.d-md-none .d-lg-block</code></td> </tr> <tr> <td>Hidden only on lg</td> <td><code class="highlighter-rouge">.d-lg-none .d-xl-block</code></td> </tr> <tr> <td>Hidden only on xl</td> <td><code class="highlighter-rouge">.d-xl-none</code></td> </tr> <tr> <td>Visible on all</td> <td><code class="highlighter-rouge">.d-block</code></td> </tr> <tr> <td>Visible only on xs</td> <td><code class="highlighter-rouge">.d-block .d-sm-none</code></td> </tr> <tr> <td>Visible only on sm</td> <td><code class="highlighter-rouge">.d-none .d-sm-block .d-md-none</code></td> </tr> <tr> <td>Visible only on md</td> <td><code class="highlighter-rouge">.d-none .d-md-block .d-lg-none</code></td> </tr> <tr> <td>Visible only on lg</td> <td><code class="highlighter-rouge">.d-none .d-lg-block .d-xl-none</code></td> </tr> <tr> <td>Visible only on xl</td> <td><code class="highlighter-rouge">.d-none .d-xl-block</code></td> </tr> </tbody> </table>
https://getbootstrap.com/docs/4.1/utilities/display/#hiding-elements
您可以为任何模块输入这些模块类后缀,以更好地控制它将在何处显示或隐藏。
.visible-phone
.visible-tablet
.visible-desktop
.hidden-phone
.hidden-tablet
.hidden-desktop
http://twitter.github.com/bootstrap/scaffolding.html滚动至底部