我正在尝试使用部分在一个简单的页面上创建导航,但是我需要它位于屏幕的右侧。Foundation 在使用 "vertical-tabs" 时提供的默认布局是"tabs on the left, content on the right"。
<div class="section-container vertical-tabs" data-section="vertical-tabs">
<section>
<p class="title" data-section-title><a href="#">Section title 1</a></p>
<div class="content" data-section-content>
<p>Content of section 1.</p>
</div>
</section>
<section>
<p class="title" data-section-title><a href="#">Section title 2</a></p>
<div class="content" data-section-content>
<p>Content of section 2.</p>
</div>
</section>
</div>
如何将布局切换为“右侧标签,左侧内容”?