是否可以在不添加容器的情况下创建以下布局? 固定元素是不可滚动的,可滚动向左和向右滑动。
布局:
-------------------------------------------------------
| 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>
答案 0 :(得分:0)
你的意思是this。如果是这样,你必须添加以下css。
section {
display:inline-block;
}
.fixed {
width: 80px;
}
.scrollable {
overflow-x:scroll;
width: 80px;
}