CSS Only Slider with Fixed元素

时间:2013-09-02 11:15:15

标签: html css

是否可以在不添加容器的情况下创建以下布局? 固定元素是不可滚动的,可滚动向左和向右滑动。

布局:

 -------------------------------------------------------
| Fixed | Fixed < Scrollable | Scrollable | Scrollable >
-------------------------------------------------------

标记:

<section class="fixed">
    <h3>Item1</h3>
</section>
<section class="fixed">
    <h3>Item2</h3>
</section>
<section class="scrollable">
    <h3>Item2</h3>
</section>
<section class="scrollable">
    <h3>Item2</h3>
</section>
<section class="scrollable">
    <h3>Item2</h3>
</section>

1 个答案:

答案 0 :(得分:0)

你的意思是this。如果是这样,你必须添加以下css。

section {
    display:inline-block;
}

.fixed {
    width: 80px;
}

.scrollable {
    overflow-x:scroll;   
    width: 80px;
}