官术网_书友最值得收藏!

Responsive utilities

Responsive utilities are a group of media query-based classes that control when an element should be hidden or shown depending on the viewport. One popular use case for this is controlling display-specific navigation. For example, a page may have a navigation bar on large displays and a hidden navigation on small displays, which is only displayed when a user chooses to open the navigation.

Let's look at a quick example with our Print Size page. Add the d-none and d-sm-block classes to the img elements:

<div class="container">
<h1>Our Print Sizes</h1>
<div class="row">
<div class="col-sm-3">
<img src="images/small.jpg" class="img-fluid rounded-circle
d-none d-sm-block">
<h5>Small</h5>
...
</div>
<div class="col-sm-3">
<img src="images/medium.jpg" class="img-fluid rounded d-
none d-sm-block">
<h5>Medium</h5>
...
</div>
<div class="col-sm-3">
<img src="images/large.jpg" class="img-thumbnail d-none d-
sm-block">
<h5>Large</h5>
...
</div>
<div class="col-sm-3">
<img src="images/extra-large.jpg" class="img-fluid d-none
d-sm-block">
<h5>Extra Large</h5>
...
</div>
</div>
</div>

The d-done class, as its name implies, sets the display property of the element to which it is applied to none. This makes the element invisible across the board, regardless of the viewport width. On the other hand, the d-sm-block class sets the display property of the element block, making it visible. The combination of these two classes ensures that the element in question becomes visible for small displays and above. This is the equivalent of using the hidden-xs class in Bootstrap 3:

Figure 2.18: Hiding elements based on the viewport size using a combination of the d-sm-block and d-none classes (example16.html)

It should be noted that, once again, Bootstrap offers different variations of these classes, depending on the required breakpoint and property value. For example, d-sm-none, d-md-block, d-sm-block-inline, d-md-inline, and so on.

Hiding in Bootstrap 3

Bootstrap 3 only offers hidden-* (where * refers to the viewport size. For example, hidden-xs). As such, to hide an element only when the display is extra-small, we will add the hidden-xs class to our element when using Bootstrap 3. The hidden-* classes have been dropped from Bootstrap 4.

That is, the d-* classes stick to the conventions found in the grid system. In the grid system, col-md targets all Medium displays and below. Likewise, d-md—none will target only Medium displays or displays smaller than Medium (that is, small).

Breakpoints and media rules using Internet Explorer 10 on Windows Phone 8

Windows 8 phones older than Update 3 (released on October 14th, 2013) won’t apply the Bootstrap media queries correctly, meaning that pages using responsive classes may break. The issue along with a (short) fix is detailed in the Bootstrap 4 documentation.
主站蜘蛛池模板: 三台县| 武强县| 舟曲县| 姜堰市| 田阳县| 波密县| 西乡县| 镇沅| 富锦市| 深圳市| 黑水县| 宜良县| 云南省| 双鸭山市| 阿城市| 东辽县| 三台县| 翁源县| 天镇县| 西藏| 繁峙县| 南昌县| 惠安县| 花莲市| 敦煌市| 德令哈市| 田阳县| 杂多县| 和田市| 绥江县| 商丘市| 遵化市| 万宁市| 镇安县| 界首市| 杂多县| 阿拉善盟| 深水埗区| 玛曲县| 修水县| 民权县|