1. 程式人生 > >使用font-awesome 在input框中增加一個圖示

使用font-awesome 在input框中增加一個圖示

比如:
    在登入框增加一個使用者頭像 ,提示使用者輸入使用者名稱

<html>
<link href="http://libs.baidu.com/fontawesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
<style>

.wrapper { position: relative; }
i.fa { position: absolute; top: 5px; left: 5px; }
.wrapper input { text-indent: 20px;}
</style>
<body>

<div class="wrapper">
    <i class="fa fa-user"></i>
    <input type="text" placeholder="username ">
</div>
<div class="wrapper">
    <i class="fa fa-key"></i>
    <input type="text" placeholder="password">
</div>
        </body>
</html>