核心CSS:
.search-input {
width: 200px; height: 20px;
line-height: 20px;
padding: 9px 39px 9px 9px;
border: 1px solid #ddd;
}
/* 搜索按钮的无依赖绝对定位 */
.search-btn {
width: 20px; height: 20px;
border: 9px solid #fff;
background: #ddd url(search.png) no-repeat center;
position: absolute; margin: 1px 0 0 -40px;
}
/* 下拉列表的无依赖绝对定位 */
.search-datalist {
position: absolute;
width: 248px;
border: 1px solid #e6e8e9;
background-color: #fff;
}
/* 搜索列表的显隐控制 */
.search-result {
display: none;
}
.search-input:focus ~ .search-result {
display: block;
}