css - Zurb Foundation Overflow -


i have problem need able scroll on mobile specific piece of content.

so have row lets say, left half of want stay - right half of need content in overflow , able scroll. part of row extend out past screen width , user scroll content.

how go this?

currently have rows setup need them anytime put more content in right hand side tries push underneath current content.

ignore custom css make changes base padding.

  <div class="row">     <div class="row">         <div class="small-6 columns smallpadding-right">             <div class="small-5 columns">             <img class="productimg" src="images/sub_subcategories/airtools.jpg">             </div>             <div class="small-5 columns font10 nopadding">             <a href="#">brooks dewalt d25123k-gb </a><br />             <a href="#" class="button tiny">remove</a>              </div>             <div class="small-2 columns smallpadding">             <img class="arrows" src="images/arrow_up.png"/>             </a><input class="input-padding" type="text" value="21"/>             <img class="arrows" src="images/arrow_down.png"/></a>             </div>         </div>         <div class="small-6 columns">             <div class="small-6 columns">             <img class="productimg" src="images/sub_subcategories/airtools.jpg">             </div>             <div class="small-6 columns">             <img class="productimg" src="images/sub_subcategories/airtools.jpg">             </div>          </div>      </div>    </div> 

according how enable overflow scrolling within semantic ui grid? , css: series of floated elements without wrapping rather scrolling horizontally (duplicates??)

you should, if understand question able fix issue html shown beneath:

<div class="row">         <div class="small-6 columns smallpadding-right">          <div class="row">                  <div class="small-5 columns">             <img class="productimg" src="images/sub_subcategories/airtools.jpg">             </div>             <div class="small-5 columns font10 nopadding">             <a href="#">brooks dewalt d25123k-gb </a><br />             <a href="#" class="button tiny">remove</a>              </div>             <div class="small-2 columns smallpadding">             <img class="arrows" src="images/arrow_up.png"/>             </a><input class="input-padding" type="text" value="21"/>             <img class="arrows" src="images/arrow_down.png"/></a>             </div>         </div>             </div>         <div class="small-6 columns">          <div class="row" style="overflow-x:scroll; white-space: nowrap">                <div class="small-6 columns" style="display:inline-block; float: none;">             <img class="productimg" src="images/sub_subcategories/airtools.jpg" alt="1">             </div>             <div class="small-6 columns" style="display:inline-block; float: none;">             <img class="productimg" src="images/sub_subcategories/airtools.jpg" alt="2">             </div>             <div class="small-6 columns" style="display:inline-block; float: none;">             <img class="productimg" src="images/sub_subcategories/airtools.jpg" alt="3">             </div>             <div class="small-6 columns" style="display:inline-block; float: none;">             <img class="productimg" src="images/sub_subcategories/airtools.jpg" alt="4">             </div>           </div>           </div> </div> 

notice inline styles style="display:inline-block; float: none;" , style="overflow-x:scroll; white-space: nowrap" can replace css , classes.

demo: http://sassmeister.com/gist/9530d90ef425eb805da6


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -