2016-09-24 14 views
-1

携帯電話でacetheinterview.coにアクセスし、2ページに移動してください。ページ上に表示される画面の一部に背景色がありますが、スクロールを開始すると白くなり、コンテンツの最後の部分は表示されません。背景色のみが上に表示されます

修正方法はありますか?

 .page { 
 
      display:none; 
 
      padding-left: 20px; 
 
      padding-right: 20px; 
 
      padding-top: 0px; 
 
      padding-bottom: 0px; 
 
     } 
 
     
 
     * { 
 
      box-sizing: border-box; 
 
      } 
 
     
 
      body { 
 
       width: 100vw; 
 
       height: 100vh; 
 
       margin: 0; 
 
       font-family: "Helvetica Neue" !important; 
 
      } 
 
     
 
      html { 
 
       margin: 0; 
 
      } 
 
     
 
      .jumbotron { 
 
       height:100%; 
 
       background: url('hero-bg-v1.jpg'); 
 
       text-align: center; 
 
       margin: 0 !important; 
 
      } 
 
     
 
      h1 { 
 
       color: #FFFFFF !important; 
 
       font-size: 45px !important; 
 
       padding-top: 10%; 
 
       font-weight: 500; 
 
       line-height: 50px; 
 
       letter-spacing: 0.8px; 
 
      } 
 
     
 
      h2 { 
 
       color: #FFFFFF !important; 
 
       font-size: 20px !important; 
 
       font-weight: 400; 
 
       letter-spacing: 0.8px; 
 
       padding-bottom: 20px; 
 
      } 
 
     
 
      #page1 { 
 
       width: 100%; 
 
       height: 100%; 
 
       background-color: #7DBB91; 
 
      } 
 
     
 
      #page2 { 
 
       width: 100%; 
 
       height: 100%; 
 
       background-color: #8BCBCA; 
 
      } 
 
     
 
      #page3 { 
 
       width: 100%; 
 
       height: 100%; 
 
       background-color: #C384C5; 
 
      } 
 
     
 
      #page4 { 
 
       width: 100%; 
 
       height: 100%; 
 
       background-color: #7C8DF5; 
 
      } 
 
     
 
      #page5 { 
 
       width: 100%; 
 
       height: 100%; 
 
       background-color: #E96C6C; 
 
       text-align: center; 
 
      }
 <div class="container"> 
 
       <div class="row"> 
 
       <h1 class="advice">ADVICE #1</h1> 
 
       </div> 
 
       <div class="row"> 
 
       <div class="col-sm-5"> 
 
        <p class="quote">Always, always research the company you are interviewing with. What is their core product? 
 
        What other opportunities are they pursuing? What are the challenges they are facing? 
 
        </p> 
 
        <br> 
 
        <br> 
 
        <button type="button" class="btn-md sales-cta" id="previousbuttonpage1">Previous</button> 
 
        <button type="button" class="btn-md sales-cta" id="nextbuttonpage1">Next</button> 
 
       </div> 
 
       <div class="col-sm-7 text-center hidden-xs"> 
 
        <%= image_tag("quote.png", width: "250", height: "170") %> 
 
        <h2 class="author">Girl</h2> 
 
        <h3 class="job-title">Product Manager</h3> 
 
        <h4 class="company">Google</h4> 
 
       </div> 
 
       </div> 
 
      </div> 
 
      <div class="col-xs-12 hidden-xs"> 
 
       <div class="author-picture" id="joe"> 
 
       <%= image_tag("joe-zadeh.png") %> 
 
       </div> 
 
      </div> 
 
      </div> 
 

 

+0

これはSafari iOSで発生します – Andy

+0

PCの非常に小さなブラウザで見ると同じ動作ですか? 私は今までにvhを使用したことがありませんが、body要素の100%に変更しようとしました。(高さ:100vh;高さ:100%;) – Pepe

+0

または「min-height; 100vh」を使用してください –

答えて

0

私はこれを推測したような問題である:

body { height: 100vh;} 

100VHは、ビューポートの高さにheighを制限します。これをheight:100%またはmin-height:100vh;に変更してください(Paulie_Dは

関連する問題