我正在使用jQuerySteps插件来创建标签。我有四个部分,因此有4个标签,它们完美地工作。但我希望每个标签都有different percent of width
。截至目前,他们每个人得到25%。但我想手动为它们分配宽度。我可以通过添加CSS类来实现。但由于它是一个插件,我无法找到如何创建和呈现<ul> and <li>
。
我的前端代码:
<div id="example-basic">
<h3>Keyboard</h3>
<section>
<p>Try the keyboard navigation by clicking arrow left or right!</p>
</section>
<h3>Effects</h3>
<section>
<p>Wonderful transition effects.</p>
</section>
<h3>Pager</h3>
<section>
<p>The next and previous buttons help you to navigate through your content.</p>
</section>
</div>
JS代码
$("#example-basic").steps({
headerTag: "h3",
bodyTag: "section",
transitionEffect: "slideLeft",
autoFocus: true
});
问题:
如何添加ID或类,以便我可以设置first tab : 20 % second tab:40 % and so on
答案 0 :(得分:2)
CSS
.wizard>.steps>ul>li:nth-child(1){
width: 20%;
}
.wizard>.steps>ul>li:nth-child(2){
width: 40%;
}