博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

简单用户名输入框

Posted on 2018-07-27 22:05  alex_hrg  阅读(160)  评论(0编辑  收藏  举报

二种:

<div style="width: 400px;height: 35px;position: relative;">
    <input type="text" style="width: 360px;height: 35px;padding-right: 40px;"/>
    <div style="width: 35px;height: 35px;position: absolute;right: 0;top: 2px;background: url(pwd-icons.png) 0 0 no-repeat;"></div>
</div>
<p />
<div style="width: 400px;height: 35px;position: relative;border: 1px solid #bcbcbc;">
    <label for="loginname" style="position: absolute;top: 0;left: 0;width: 35px;height: 35px;background: url(pwd-icons.png) 0 0 no-repeat;border-right: 1px solid #a9a9a9;"></label>
    <input id="loginname" style="width: 360px;height: 33px; border: 0;padding-left: 40px;" type="text" />
</div>