改变jWizard的高度

时间:2010-11-06 01:45:35

标签: jquery jquery-plugins jwizard

我可以更改jWizard jQuery plugin的高度吗?

2 个答案:

答案 0 :(得分:3)

是的,你可以,你必须编辑jWizard.base.css

在jWizard.base.css中搜索.jw-steps-wrap它已经有15em的高度你可以将它改为你想要的值:)

答案 1 :(得分:3)

更优雅的方法是覆盖特定html文件中的css - Class(而不是更改默认类):

例如在你的html标题中使用它:

<style type="text/css" title="currentStyle">
   @import "./css/JWizard.base.css";

   .jw-steps-wrap {
        height: 250px;
        overflow: auto;
        padding: .5em;
    }               

</style>

就像一个魅力!