在响应移动设备时,css文本未显示

时间:2017-07-16 11:03:15

标签: css responsive-design

第一张图片用于桌面视图。没关系,但是当我在浏览器中观看移动视图时。 h1正在上升而没有显示在屏幕上。

//第二张图片用于移动视图。我希望在这里解释这个问题。

html代码

<div class="container" id="slide">

      <div id="myCarousel" class="carousel slide" data-ride="carousel">
        <!-- Indicators -->
        <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>

        <!-- Wrapper for slides -->
        <div class="carousel-inner">
          <div class="item active">
            <img src="img/bg3.jpg" alt="Los Angeles" style="width:100%; max-height: 900px;">

            <div class="carousel-caption">
            <img src="img/logo1.png" width="50px;" height="50px;">

            <h1 style="font-size: 75px; font-weight: bold; color: #fc4128; text-shadow: 2px 2px #00a0c6; padding-bottom: auto; ">Bluebay Systems Ltd</h1>


          <h3 style="color:white; font-weight: bold;padding-bottom: 50px;">Complete IT Solution For Your Every Need</h3>
          <br>
          <br>
            <a href="#about" class="btn btn-dark btn-lg">Find Out More</a>
        </div>
          </div>

          <div class="item" style=" max-height: 900px;">
            <img src="img/bg1.jpg" alt="Chicago" style="width:100%; max-height: 900px;">
             <div class="carousel-caption">
             <img src="img/logo1.png" width="50px;" height="50px;">

            <h1 style="font-size: 75px; font-weight: bold; color: #fc4128; text-shadow: 2px 2px #00a0c6; padding-bottom:auto; ">Bluebay Systems Ltd</h1>

          <h3 style="color: white; font-weight: bold;padding-bottom: 50px;" >Complete IT Solution For Your Every Need</h3>
          <br>
            <a href="#about" class="btn btn-dark btn-lg">Find Out More</a>
        </div>
          </div>

          <div class="item">
            <img src="img/bg.jpg" alt="New york" style="width:100%; max-height: 900px;">
             <div class="carousel-caption">
             <img src="img/logo1.png" width="50px;" height="50px;">

            <h1 style="font-size: 75px; font-weight: bold; color: #fc4128; text-shadow: 2px 2px #00a0c6; padding-bottom: auto; ">Bluebay Systems Ltd</h1>

          <h3 style="color: white; font-weight: bold; padding-bottom: 50px;padding-top: 10px;" >Complete IT Solution For Your Every Need</h3>
          <br>
            <a href="#about" class="btn btn-dark btn-lg">Find Out More</a>
        </div>
          </div>
        </div>

        <!-- Left and right controls -->
        <a class="left carousel-control" href="#myCarousel" data-slide="prev">
          <span class="glyphicon glyphicon-chevron-left"></span>
          <span class="sr-only">Previous</span>
        </a>
        <a class="right carousel-control" href="#myCarousel" data-slide="next">
          <span class="glyphicon glyphicon-chevron-right"></span>
          <span class="sr-only">Next</span>
        </a>
      </div>
    </div>

css代码

#slide{

    width: 100%;

    padding-left: 0px;
    padding-right: 0px;
}

this is  for full screen

this is mobile view

2 个答案:

答案 0 :(得分:0)

请检查Bootstrap css并找到以下内容。

@media screen and (max-width: 767px) {

  /* Hide captions class  */
  .carousel-caption {
     display: none
  }
}

答案 1 :(得分:0)

添加到最后一个CSS文件的底部,或者在media.css中添加CSS查询:

@media screen and (min-width: 300px) and (max-width: 767px){


  /* Hide captions class  */
  .carousel-caption {
     display: block !important;
  }
}