gpt4 book ai didi

jquery - JQuery 选项卡底部的空白区域

转载 作者:行者123 更新时间:2023-11-28 12:25:45 25 4
gpt4 key购买 nike

我在我的页面中使用 JQuery 选项卡,并且使用一些借用的 CSS 设置/脚本成功地将选项卡放置在内容下方。

我的页面左侧有侧边栏,页面顶部有菜单横幅。然后,内容会出现在顶部菜单横幅和底部的选项卡面板之间。

我注意到我的页面底部有一个小的空白区域,这导致显示了垂直滚动条。我想删除这个空间(和滚动)并需要专家的帮助。

我知道空格是由我内容的选项卡部分引起的,因为我在其他主要元素上使用了 Firebug 和消除技术,只有在我引入选项卡时才会出现空格。

我已将 CSS 填充、边距和边框宽度设置为零,但仍然看到空格。

这是我的 HTML、CSS 和脚本:

<head>
<title>Rfq</title>
<%= stylesheet_link_tag "rfq.css" %>
<%= javascript_include_tag :defaults %>
<%= javascript_include_tag "jquery-ui-1.8.10.custom.min.js" %>
<%= javascript_include_tag "rfq.js" %>
<%= csrf_meta_tag %>
</head>
<body>
<!--the top menu bar-->
<div id="rfq_menu_bar" class="ui-widget-header">Request for quote...</div>
<!--the side bar collapsed-->
<div id="rfq_side_bar_collapsed" class="ui-tabs-nav ui-state-active" >
</div>
<!--the tab panels-->
<div id=rfq_tabs_parent class="ui-widget-content">
<div id="rfq_main_tabs" class="tabs-bottom ui-widget-content">
<ul>
<li><a class="rfq_main_tab" id="items_tab" href="#rfq_items_panel">RFQ Items</a></li>
<li><a class="rfq_main_tab" id="reports_tab" href="#rfq_reports_panel">RFQ Reports</a></li>
</ul>
<div class="rfq_tab_content" id="rfq_items_panel">bob</div>
<div class="rfq_tab_content" id="rfq_reports_panel">jane</div>
</div>
</div>
</body>

还有我的 CSS:

html, body {
margin: 0;
padding: 0;
height: 100%;
font-family: Verdana, Sans-serif;
font-size: 10px;
position: relative;
border-width:0;
}

#rfq_users_table_wrapper {
width: 100%;
left:0;
top:0;
position: absolute;
margin: 0;
padding: 0;
}

#rfq_menu_bar {
margin: 0;
padding: 0;
height: 8%;
font-family: Sans-serif;
font-size: 20px;
left:0;
width:100%;
border-width:0;
}

#rfq_side_bar_collapsed {
margin: 0;
padding: 0;
float: left;
height:92%;
width:2%;
border-width:0;
}

#rfq_main_tabs {
height:100% !important;
padding: 0;
margin: 0;
border-width: 0;
}


.ui-button-text
{
font-size: 10px;
}

#rfq_tabs_parent {
position:absolute;
left:2%;
width:98%; !important;
height: 92% !important;
z-index: -2000;
margin: 0;
padding: 0;
border-width:0;
}

#rfq_items_panel {
padding: 0;
margin: 0;
border-width:0;
}

#rfq_reports_panel {
padding: 0;
margin: 0;
border-width: 0;
}

.rfq_tab_content {
height:100% !important;
width:100% !important;
padding: 0;
margin: 0;
}

.tabs-bottom {
position: relative;
padding: 0;
margin: 0;
}

.tabs-bottom .ui-tabs-panel {
height: 120px;
overflow: auto;
}

.tabs-bottom .ui-tabs-nav {
position: absolute !important;
left: 0;
bottom: 0;
right:0;
padding: 0 0.2em 0.2em 0;
}

.tabs-bottom .ui-tabs-nav li {
margin-top: -1px !important;
margin-bottom: 3px !important;
border-top: none;
border-bottom-width: 1px;
}

.ui-tabs-selected {
margin-top: -3px !important;
}

我的Javascript:

//在内容底部放置标签:

$( ".tabs-bottom .ui-tabs-nav, .tabs-bottom .ui-tabs-nav > *" )
.removeClass( "ui-corner-all ui-corner-top" )
.addClass( "ui-corner-bottom" );

最佳答案

我知道这不是一个答案,而是一个止痛药,但给你。将此添加到您的样式中:

.ui-helper-clearfix::after {
display: inline !important;
}​

修补 fiddle - http://jsfiddle.net/uTatW/

选项卡插件本身应用于其 DOM 节点的 clearfixes 似乎存在问题。覆盖它从样式继承的 display: block 似乎可以在不伤害任何东西的情况下消除这个问题。

关于jquery - JQuery 选项卡底部的空白区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6715598/

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