2015-10-15 21 views
0

這是我的情況,我在本地有一個基礎5的網站,但是當我在服務器上放置一組頁面在移動設備上測試(三星Galaxy認爲是中等設備)內容的一部分不會按照假設延伸。這是我的母版文件的結構:使用基礎上的移動設備時出現錯誤提示5

<!-- MasterPage Structure --> 
<div class="row" data-equalizer> 
    <div class="hide-for-medium-down large-3 columns" data-equalizer-watch></div> 
    <div class="small-12 large-7 columns" data-equalizer-watch> 
     <asp:ContentPlaceHolder ID="cphMain" runat="server"></asp:ContentPlaceHolder> 
    </div> 
    <div class="hide-for-medium-down large-2 columns" data-equalizer-watch></div> 
</div> 

,這是我的內容頁面之一這使得我的手機壞,我會解釋一下它的代碼內一些部分呈現正確,像預想的那樣:

<!-- Content Page Structure --> 
<asp:Content ID="Content2" ContentPlaceHolderID="cphMain" runat="server"> 
    <div class="row"> 
     <div class="small-12 columns"> 
      <!-- here i have some long text which should span for the whole page width, 
       however it doesnt and expands for a little more than 1/3 of it --> 
     </div> 
    </div> 

    <div class="row"> 
     <div class="small-4 columns"> 
      <ul class="pricing-table"></ul> 
     </div> 
     <div class="small-4 columns"> 
      <ul class="pricing-table"></ul> 
     </div> 
     <div class="small-4 columns"> 
      <ul class="pricing-table"></ul> 
     </div> 
    </div> 

    <div class="row"> 
     <div class="small-12 columns"> 
      <!-- here i have some long text which should span for the whole page width, 
       however it doesnt and expands for a little more than 1/3 of it --> 
     </div> 
    </div> 
</asp:Content> 

回答

相關問題