gpt4 book ai didi

html - CSS Awesome 字体图标作为提交按钮

转载 作者:行者123 更新时间:2023-11-28 04:10:22 28 4
gpt4 key购买 nike

我有一个像这样的提交按钮:

<input type="submit" value="Submit" id="submitButton" />

我也有这个很棒的字体图标

<i class="fa fa-search"></i>

我尝试将类添加到提交按钮,但这没有用。

最佳答案

除非您坚决使用 <input> , 使用 <button>使这更容易一些,但可以使用 unicode 版本的搜索并在其前面加上 &#x :

#submitButton {
font-family: FontAwesome;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">

<input type="submit" value="&#xf002" id="submitButton">
<button id="submitButton">
<i class="fa fa-search"></i>
</button>

任何 Font Awesome 图标的 Unicode 版本都可以在 Font Awesome site 上的图标下方找到:

Unicode for Font Awesome icons

Fiddle

关于html - CSS Awesome 字体图标作为提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35727150/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com