gpt4 book ai didi

html - 如何在输入标签中设置 Font Awesome 图标

转载 作者:行者123 更新时间:2023-11-28 15:53:07 26 4
gpt4 key购买 nike

输入标签和图标的代码如下:

<input type="email" placeholder="Username" id="tutu" required />

CSS

#tutu{
border-radius: 3px;
border: 1px silver solid;
padding-left: 10px;
font-weight: bolder;
color: #bcbcbc;
height: 40px;
width: 350px;
}

最佳答案

尝试像这样将输入和图标包装到父 div 中

<div class="tutuclass">
<input type="email" placeholder="Username" id="tutu" required />
<i class="fa fa-user"></i>
</div>

然后如下更改css

.tutuclass #tutu{
border-radius: 3px;
border: 1px silver solid;
padding-left: 10px;
font-weight: bolder;
color: #bcbcbc;
height: 40px;
width: 350px;
}
.tutuclass .fa {
margin: auto -30px;
}

关于html - 如何在输入标签中设置 Font Awesome 图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41583491/

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