Reputation: 73
auto-complete div is linked with the first input but the div is rolling behind the second input.how do i correct the problem ?
#suggesstion_box{
position: absolute;
left: 163px;
top: 25px;
border: 1px solid #222;
width: 164px;
background-color: white;
cursor: default;
}
this is the css
Upvotes: 0
Views: 35
Reputation: 5544
Give z-index to #suggesstion_box
#suggesstion_box{
z-index:9;
position: absolute;
left: 163px;
top: 25px;
border: 1px solid #222;
width: 164px;
background-color: white;
cursor: default;
}
Upvotes: 1