无法在Firefox中正确定位第二个内联块元素

时间:2015-10-27 13:38:15

标签: css firefox

无法弄清楚,如何对齐"添加新项目"按钮以及"搜索"控制。 它只在Firefox中不行,在其他浏览器中,按钮与外部容器的顶部对齐(它是一个表单)。 好像在Firefox中这个按钮与"搜索"中的文本的基线对齐。控制 - "搜索文本"。但是这些信息并没有帮助我解决问题,我尝试了不同的方法。

enter image description here

P.S。请不要建议使用浮动或绝对定位 - 我无法改变设计师的设计。

CSS:

.localSearchWrapper {
  margin-right: 2em;
  max-width: 20em;
  display: inline-block;
  padding: 0.2em;
  position: relative;
  top: -0.9em;
}

.addNewItem {
  height: 2.8em;
  width: 2.8em;
  border: 3px solid #0E6463;
  background: #FFF url("/Content/images/plus.png") no-repeat scroll center center / 2em auto;
}

HTML:

<form ...>
  <div class="localSearchWrapper">
    <input name="localsearch" placeholder="Search text" id="localSearchField" type="search"></input>
    <input id="localSearchButton" type="button"></input>
  </div>
  <button class="addNewItem" type="button"></button>
  <!-- IE < 10 does not like giving a tbody a height. The workaround here applies the scrolling to a wrapped <div>. -->
  <!--[if lte IE 9]>
  <div class="old_ie_wrapper">
  <!--<![endif]-->
  <div style="overflow: hidden;" id="tableContainer" class="listContainer">...</div>    
  <!--[if lte IE 9]>
  </div>
  <!--<![endif]-->
</form>

FIDDLE SOURCE

1 个答案:

答案 0 :(得分:1)

您可以更改搜索框的垂直位置,因此您需要对按钮执行相同操作。

尝试添加

vertical-align: top;
position: relative;
top: -0.9em;

.addNewItem

更好的选择是在适当的元素上使用边距,而不是尝试调整每个元素。