本文介绍了水平制作li元素堆栈的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
* li1 * li2 * li3 $
而不是:
* li
* li
* li
在右边被隐藏,并根据需要滚动。
以下是
I need the following li to stack against each other in a horizontal fashion like so:
*li1 *li2 *li3
instead of:
* li
* li
* li
Pretty much the li elements would be aligned like a gallery with the lis to the right being hidden and scrolled as needed.
Here is the JSFiddle
解决方案
- Add another container that handles the scrolling of its content
- Make the
li
bedisplay: inline-block
so they'll stack next to each other - Set
white-space: nowrap
on theul
so theli
elements will stay on one line in its narrow container
http://jsfiddle.net/EvilOatmeal/nxGG2/2/
这篇关于水平制作li元素堆栈的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!