pkg-components
Version:
37 lines (32 loc) • 685 B
CSS
.container {
position: relative;
display: inline-block;
}
.input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
}
.suggestions {
position: absolute;
top: calc(100% + 5px);
left: 0;
height: 170px;
overflow: hidden auto;
z-index: 1;
list-style-type: none;
padding: 0;
margin: 0;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.suggestions li {
padding: 8px 12px;
cursor: pointer;
}
.suggestions li:hover {
background-color: #f0f0f0;
}