input裡新增小圖示 (實用、贊)
阿新 • • 發佈:2018-12-19
https://blog.csdn.net/chengQunBin/article/details/78505654
方法一
將小圖示當做input的背景來插入,直接上程式碼吧:
<style type="text/css"> *{ margin: 0; padding: 0; } input{ border: none; } .box{ height: 50px; background: yellow; } .box input{ width: 200px; height: 30px; border-radius: 15px; margin: 10px 0; background: url(image/search.gif) no-repeat; background-color: white; background-position: 3px; padding-left: 30px; border: 1px solid black; outline: none; } </style> </head> <body> <div class="box"> <input type="text" class="username" value="搜尋"/> </div> </body>
效果圖:
方法二
使用 i 標籤插入
<style type="text/css"> * { margin: 0; padding: 0; } .box { width: 200px; position: relative; } .box .icon-search { background: url(find.png) no-repeat; width: 30px; height: 50px; position: absolute; top: -1px; left: 0; } .box .username { padding-left: 30px; height: 25px; } </style> </head> <body> <div class="box"> <i class="icon-search"></i> <input type="text" class="username" value="搜尋"/> </div> </body>
效圖:
個人總結:
原理就是在input下面添加了底圖,感覺第一種方法更好,可以少用元素
擴充套件一下估計就可以實現如下圖的錄入錯誤提示了