在我的网站中,我有一个必须用作自动完成框的文本字段。我在页面的“标题栏”中使用此代码:
Find :<input type="text" class="input2" style="margin-bottom:0px;" id="customersearchfield">
<div id="customersearchresult" style="display:none; position:absolute; z-index:999; background:#fff; color:black; ">
CSS:
.input2{
display: inline;
margin-top: 4px;
padding: 3px;
border: 0px;
width: 200px;
}
这不能按预期工作。resultdiv 垂直放置在文本字段的正下方,但不水平对齐。它只是与浏览器窗口的左侧对齐。
如何将resultdiv的左上角直接放在文本字段的左下角,使其直接出现在文本字段的下方?