在 Firefox 和 Chrome 中,“filters_area” div 在“tabs” div 下正确左对齐,与浏览器窗口的左侧对齐。然而,在 Safari 中,“filters_area” div 与“tabs” div 的右边缘左对齐。任何想法为什么这个 div 在 Safari 中的对齐方式不同?这是代码;
<div id="tabs" class="ui-tabs ui-widget ui-widget-content ui-corner-all">
<ul id="tab_list" class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
<li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active">
<span id="Items">Items</span>
</li>
<span id="tab_options">
<span id="help_link" href="#help">help</span>
|
<span id="myaccount">settings</span>
|
<a href="logout">log out</a>
</span>
</ul>
</div>
<div id="instructions_area">
<input id="search_box" type="text" value="Search..." name="search">
<div id="filters_area">
<span id="Everything" class="filter active_filter">On Hand</span>
</div>
</div>
CSS
#tabs {
border : 0px;
height : 34px;
}
#tab_list {
border : 0px;
display : block;
}
#instructions_area {
background : #FFF url( '../images/products_top.png' ) repeat-x ;
height : 40px;
line-height : 32px;
padding-left: 10px;
}
#filters_area {
color : #555;
height : 40px;
font-size : 14px;
float : left;
line-height : 32px;
}
#search_box {
border : 1px solid #AAEE22;
color : #390;
height : 18px;
float : right;
font-size : 12px;
font-weight : bold;
margin : 4px 10px 0px 0px;
width : 175px;
}