我已经设法在输入字段中获取搜索图标,并且可以将输入字段置于边距:0自动并将其显示为阻止(但这保持在字段中的图标并保持在右侧该页面,因为它是阻止 - 但它是我设法使其居中的唯一方式)。 HTML / CSS的新手,有没有正确的方法来做到这一点?希望学习。
目前有这段代码:
sudo systemctl restart apache2
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");
.search {
position: relative;
color: #aaa;
font-size: 16px;
}
.search input {
width: 500px;
height: 32px;
background: #fcfcfc;
border: 0;
border-bottom: 5px solid #000;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0 auto;
}
.search input {
text-indent: 32px;
}
.search .fa-search {
position: absolute;
top: 10px;
left: 10px;
}
答案 0 :(得分:2)
输入是一个内联元素,考虑将包装器居中,这是一个div(块元素),可以使用margin:auto
。您也可以使用max-width使其在小屏幕上响应:
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css");
.search {
position: relative;
color: #aaa;
font-size: 16px;
max-width: 500px;
width:100%;
margin:0 auto;
}
.search input {
width:100%;
height: 32px;
background: #fcfcfc;
border: 0;
border-bottom: 5px solid #000;
outline: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.search input {
text-indent: 32px;
}
.search .fa-search {
position: absolute;
top: 10px;
left: 10px;
}

<div class="search">
<span class="fa fa-search"></span>
<input placeholder="Search term" id="search" class="keyword">
</div>
&#13;