2017-11-10 61 views
6

Jak umieścić fontawesome w symbol zastępczy. Tu jest mój kodu:Fontawesome użytkownik w zastępczym

<div class="form-group">   
    <input class="form-control" placeholder="username" id="inputdefault" type="text" /> 
    <input class="form-control" placeholder="password" id="inputdefault" type="text" /> 
</div> 
+0

Możliwe obejście https://stackoverflow.com/a/36808965/2375207 – nicolallias

Odpowiedz

3

Spróbuj w ten sposób:

input { 
 
    padding:10px; 
 
\t font-family: FontAwesome; 
 
    
 
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/> 
 
<form role="form"> 
 
    <div class="form-group"> 
 
    <input type="text" class="form-control empty" id="iconified" placeholder="&#xf2ba"> 
 
    </div> 
 
</form>

+0

muszę importować coś – Ephraim

+0

to pokazać tylko – Ephraim

+0

pole @ Ephraim to po prostu wspaniała biblioteka fontów, którą należy uwzględnić, która jest oczekiwana. Tutaj załączam wspaniały font CDN. to jest to! – nabanita

0

Możesz spróbować tego:

/* add the font to the input element*/ 
 

 
input { 
 
    font: normal normal normal 14px/1 FontAwesome; 
 
    font-size: inherit; 
 
    text-rendering: auto; 
 
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> 
 
<!-- add the code of the icon in the placeholder--> 
 
<input class="form-control" placeholder="&#xF002;" id="inputdefault" type="text">

można znaleźć kody here

0
<input type="text" class="form-control" placeholder="&#xF002;" id="inputdefault" style="font-family:Arial, FontAwesome" /> 

listę kodów hex można znaleźć w Font Awesome cheatsheet.