我一直在做一个小任务,似乎无法让搜索图标出现在搜索栏中。我到处寻找答案,它真的让我烦恼哈哈。我会说我是HTML和CSS的初学者,所以如果有任何愚蠢的错误,请理解。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
.searchbar {display: inline-block;
float: right;
padding: 20px 0px}
.searchbar input[type=text] {border:none;
font-family: courier;
font-size: 18px;
font-style: italic;
}
.searchbar button {float: right;
padding:12px;
background: #ddd;
font-size: 12px;
border: none;
cursor: pointer;
}
</style>
<title>Untitled Document</title>
</head>
<body>
<div class="searchbar">
<input type="text" placeholder="search...">
<button type="submit"><i class="fa fa-search"></i></button>
</div>
</body>
</html>
您正在尝试使用Font Awesome图标。 Font Awesome是一个通过CSS提供的图标字体库。因此,您需要在页面上包含Font Awesome CSS才能使用.fa
和.fa-search
CSS类。
.searchbar {
display: inline-block;
float: right;
padding: 20px 0px
}
.searchbar input[type=text] {
border: none;
font-family: courier;
font-size: 18px;
font-style: italic;
}
.searchbar button {
float: right;
padding: 12px;
background: #ddd;
font-size: 12px;
border: none;
cursor: pointer;
}
<link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet"/>
<div class="searchbar">
<input type="text" placeholder="search...">
<button type="submit"><i class="fa fa-search"></i></button>
</div>