bootstrap 4 carousel caption is not visible on small devices

人盡茶涼 提交于 2020-08-22 11:55:41

问题


I was practicing bootstrap 4 carousal example given in http://v4-alpha.getbootstrap.com/examples/ . carousal caption is not visible when testing it for mobile or small screen. Any help please.

 <div id="myCarousel" class="carousel slide" data-ride="carousel">
 <ol class="carousel-indicators">
 <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
 <li data-target="#myCarousel" data-slide-to="1"></li>
 <li data-target="#myCarousel" data-slide-to="2"></li>
 </ol>
 <div class="carousel-inner" role="listbox">
 <div class="carousel-item active">
 <img class="first-slide" src="data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==" alt="First slide">
 <div class="container">
 <div class="carousel-caption d-none d-md-block text-left">
 <h1>Example headline.</h1>
 <p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
 <p><a class="btn btn-lg btn-primary" href="#" role="button">Sign up today</a></p>
 </div>
 </div>
 </div>
 <div class="carousel-item">
 <img class="second-slide" src="data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==" alt="Second slide">
 <div class="container">
 <div class="carousel-caption d-none d-md-block">
 <h1>Another example headline.</h1>
 <p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
 <p><a class="btn btn-lg btn-primary" href="#" role="button">Learn more</a></p>
 </div>
 </div>
 </div>
 <div class="carousel-item">
 <img class="third-slide" src="data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==" alt="Third slide">
 <div class="container">
 <div class="carousel-caption d-none d-md-block text-right">
 <h1>One more for good measure.</h1>
 <p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
 <p><a class="btn btn-lg btn-primary" href="#" role="button">Browse gallery</a></p>
 </div>
 </div>
 </div>
 </div>
 <a class="carousel-control-prev" href="#myCarousel" role="button" data-slide="prev">
 <span class="carousel-control-prev-icon" aria-hidden="true"></span>
 <span class="sr-only">Previous</span>
 </a>
 <a class="carousel-control-next" href="#myCarousel" role="button" data-slide="next">
 <span class="carousel-control-next-icon" aria-hidden="true"></span>
 <span class="sr-only">Next</span>
 </a>
 </div>

回答1:


Remove the classes d-none d-md-block from all of the carousel-caption classes, the class d-none gives the caption a display of none and the class d-md-block gives it a display of block for md and above screens.

Note: you may need to adjust the text size on smaller screens to make everything fit if you have a lot of text in your captions.




回答2:


Here's what you ought to do:

  1. Remove class d-none.
  2. Remove class d-md-block.

associated with the carousel-caption class of Bootstrap carousel.



来源:https://stackoverflow.com/questions/42451739/bootstrap-4-carousel-caption-is-not-visible-on-small-devices

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!