I am getting some strange wrapping behavior in Chrome with jquery tools tabs:
When the browser is larger, they all just appear in one row. The CSS for the tabs is:
/* root element for tabs */
ul.tabs {
margin:0 !important;
padding:0;
height:30px;
border-bottom:1px solid #666;
}
/* single tab */
ul.tabs li {
float:left; 开发者_高级运维
padding:0;
margin:0;
list-style-type:none;
}
/* link inside the tab. uses a background image */
ul.tabs a {
float:left;
font-size:13px;
display:block;
padding:5px 30px;
text-decoration:none;
border:1px solid #666;
border-bottom:0px;
height:18px;
background-color:#efefef;
color:#777;
margin-right:2px;
position:relative;
top:1px;
outline:0;
-moz-border-radius:4px 4px 0 0;
}
ul.tabs a:hover {
background-color:#F7F7F7;
color:#333;
}
/* selected tab */
ul.tabs a.current {
background-color:#ddd;
border-bottom:1px solid #ddd;
color:#000;
cursor:default;
}
/* tab pane */
.panes div {
display:none;
border:1px solid #666;
border-width:0 1px 1px 1px;
min-height:150px;
padding:15px 20px;
background-color:#ddd;
}
The Over all structure of this page is:
Anyone have any suggestions on how I mix fix or work around this?
- I added
overflow: hidden
toul.tabs
to clear the floated elements (tabs). - I added
border-bottom: 1px solid transparent
to offset the problem, which was having onul.tabs a.current
this:border-bottom:1px solid #ddd
. - The
border
was making that one tab1px
higher than the other tabs, but the1px
oftransparent
border ensures consistent height. - When you have floated elements that are different heights, you get these sorts of problems.
See: http://jsfiddle.net/me9XZ/3/
I tested in Chrome/Firefox.
Give ui.tabs li height.
ul.tabs li {
height:30px;
}
精彩评论