Horizontal Scrolling in HTML CSS -


i have list of content want display in bootstrap grid of span9 , has scroll across in x axis. below can find snap shot of design.

enter image description here

but not able work with

overflow-x: scroll; overflow-y: hidden; 

link: http://play.mink7.com/mybooks/template.html

the content not overflowing on x axis because goes new line. you'd need force content stay on 1 line with:

.featured-category ul {     white-space: nowrap;    // add }  .featured-category ul li {     display: inline-block;  // add     /*float: left;*/        // remove } 

Comments

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -