gpt4 book ai didi

jquery-ui - jQuery UI 主题

转载 作者:行者123 更新时间:2023-12-04 06:51:35 24 4
gpt4 key购买 nike

所以我下载了一个 jQuery UI 主题并链接它,但它看起来不像网站上的它们。按钮很大,文字也很大。

<link rel="stylesheet" type="text/css" href="/css/trontastic/jquery-ui-1.8.2.custom.css">
$('#Delete').dialog({
modal: true,
autoOpen: false,
title: "Delete?",
buttons: {
"Yes": function(){
$(this).dialog('close');
$('li#'+$id).remove();
$('.nav').sortUpdate();
},
"No":function(){
$(this).dialog('close');
}
},
draggable: false,
resizable: false
});

我是否遗漏了什么,或者是否有额外的 css 需要手动编码?谢谢

最佳答案

jQuery 主题中的字体大小都是使用 em 比例的相对大小。首先在 body 标签中设置字体大小,主题将从此开始工作。

所有 jQuery 演示都使用:

body {
font-size: 62.5%;
}

就像在以下位置找到的 jQuery 演示 css 文件一样: http://jqueryui.com/demos/demos.css

或尝试这样设置:
<body style="font-size:72%;">
... etc ...
</body>

关于jquery-ui - jQuery UI 主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3042690/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com