我正在尝试将图标附加到输入中。
使用font awesome可以将该图标附加到输入值上,如下所示:
<input class="btn" type="submit" value="">
其中value=""
相当于<i class="fa fa-sign-in"></i>
,到目前为止这是完美的,但我需要更大的图标,我该如何实现?或者将该图标附加到输入的另一种方式是什么?
和css
input[type="submit"] {
font-family: FontAwesome;
}
并且图标必须附在左侧。
答案 0 :(得分:2)
我会使用<button type="submit"></button>
@font-face {
font-family: FontAwasome;
src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/fonts/fontawesome-webfont.woff");
}
.sign-in:after {
content: '';
display: inline-block;
font-family: FontAwasome;
font-size: 2em;
line-height: 2.75rem;
height: 2.75rem;
vertical-align: top;
}
button {
background-color: blue;
border: none;
color: white;
min-height: 2.75em;
margin: 0;
padding: 0 1em;
}
<button type="submit" class="sign-in"></button>