gpt4 book ai didi

jQuery-UI 选项卡存在 css float 问题

转载 作者:行者123 更新时间:2023-12-02 23:04:03 25 4
gpt4 key购买 nike

我在使用 jQueryUi 选项卡时遇到问题。我想在选项卡 View 的左侧有一个导航栏,但布局不起作用。我认为这是一个错误,我会将其报告给 jQuery,但首先我想看看您是否可以确认这是一个错误,还是我做错了什么?

在 [ http://public.virtualmischa.de/bugs/jqueryui-tabslayout.html 处预览我的示例].

首先您会看到非工作选项卡示例,下面是工作标准 float div 示例。

<!DOCTYPE html> 
<html>
<head>
<title>JQuery Tablayout problems</title>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/themes/base/jquery-ui.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#tabs").tabs();
});
</script>
</head>
<body>
<div style="float:left; width:200; color: red;height: 200px;">Where is my left bar?<br></div>
<div id="tabs"><ul><li><a href="#a1">A tab page</a></li></ul>
<div id="a1">Do you see a red bar left of this tab view?</a></div>
</div>

<div style="float:clear"></div>

<div style="float:left; width:200; color: red;height: 200px;">Where is my left bar?<br></div>
<div id="no-tabs"><ul><li><a href="#a2">A tab page</a></li></ul>
<div id="a2">Do you see a red bar left of this tab view?</a></div>
</div>
</body>
</html>

最佳答案

这里的解决方案解决了我的问题,它看起来有点像你的问题。看着 jquery ui tip floated divs inside了解更多信息。

#yourTabsDiv {
float:left;

width: 100%;

}

关于jQuery-UI 选项卡存在 css float 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6802358/

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