JQuery UI 选项卡大小

发布于 2024-08-06 20:27:10 字数 260 浏览 5 评论 0原文

我在 jquery UI 中的选项卡大小有问题,它们太大了..我改变了一点 css,但找不到合适的 id/class 来修复它..:(

替代文字

并且选项卡内的文本也会更改大小:S 一如既往,任何改变都是值得赞赏的 谢谢!

i have a problem with the tab size in jquery UI , they are HUGE .. i changed a bit the css but cant find the propper id/class to fix it .. :(

alt text

and the text inside the tab aslo changes size :S
as always , any change is appreciated
Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

々眼睛长脚气 2024-08-13 20:27:10

修改 .ui-tabs jquery ui 主题类以包含 font-size 属性将解决此问题。

modifying the .ui-tabs jquery ui theme class to include the font-size property will resolve this.

如日中天 2024-08-13 20:27:10

默认情况下,文本大小在 .ui-helper-reset 中定义,但它可能会被活动主题的 CSS 覆盖。如有疑问,请启动 Firebug 并使用“检查”按钮找出相关元素的 CSS 定义。

The text size is defined in .ui-helper-reset by default, but it might be overriden by the CSS of the active theme. When in doubt, fire up Firebug and use the Inspect button to find out the CSS definitions for the element in question.

月亮坠入山谷 2024-08-13 20:27:10

我使用 body {font-size:62.5%;}

I use body {font-size:62.5%;}

烟酒忠诚 2024-08-13 20:27:10

我希望这个问题与 reducing the height of jquery ui tabs< 中的问题类似/a>..

从那里我发现这个信息对你有用..

.ui-tabs .ui-tabs-nav li {height: 25px;字体大小:12px; }

I hope this question is similar to the question in reducing the height of jquery ui tabs..

From there i found this info to be useful for you..

.ui-tabs .ui-tabs-nav li {height: 25px; font-size:12px; }

如果没结果 2024-08-13 20:27:10

只需更改 li a 元素的 padding 属性

,即默认情况下 li a { padding:0.5em 1em;} 的 padding 属性
您可以重写上述属性来满足您的要求。

Just change padding property for li a element

i.e., by default padding property for li a { padding:0.5em 1em;}
You can override the above property to meet your requirement .

一世旳自豪 2024-08-13 20:27:10

这里有一些好主意:http://keith-wood.name/uiTabs.html

本质上,创建一个像这样的 css 类:

.my-tabs .ui-tabs-nav li { font-size: 10pt; }

然后在选项卡中使用此类:

<div id='divMyTabbedContainer' class='my-tabs'>

There are some good ideas here: http://keith-wood.name/uiTabs.html

Essentially, create a css class like this:

.my-tabs .ui-tabs-nav li { font-size: 10pt; }

Then use this class in your tab's :

<div id='divMyTabbedContainer' class='my-tabs'>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文