0

I have a project that uses JQuery-UI. I recently found formee, which is a nice framework for building forms. One annoyance is that the formee submit button styling overrides the jquery-ui themed button style. How can I get all of the formee goodness but keep my jquery-ui button style? I realize I can edit the formee CSS to remove the button style, but I'm hoping to avoid that.

4

2 回答 2

2

正如您自己所说,您可以删除有问题的 CSS,这是我的建议。

或者,您可以为应用在相关按钮上的 jQuery UI css 类提供比 formee 类更具特异性。这将是第二好的解决方案。

作为最后一种情况,您可以!important;在 jQuery UI 的类中添加所有 CSS 属性......我真的不推荐这个。

于 2012-04-09T15:10:25.343 回答
1

用它来把前面:

#your-div-id{
   position:relative;
   z-index:999999;
}
于 2012-04-09T15:10:10.883 回答