CSS to put icon inside an input element in a form
To add icon inside the input element the <i> tag and <span> tag are used widely to add icons on the webpages. To add any icons on the webpages or in some specific area, it needs the fontawesome link inside the head tag. The fontawesome icon can be placed by using the fa prefix before the icon’s name.
fontawesome link: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css
Note: No downloading or installation is required.
Example-1:
<!DOCTYPE html> < html > < head > < link rel = "stylesheet" href = < style > .input-icons i { position: absolute; } .input-icons { width: 100%; margin-bottom: 10px; } .icon { padding: 10px; min-width: 40px; } .input-field { width: 100%; padding: 10px; text-align: center; } </ style > </ head > < body > < h3 > Icons inside the input element </ h3 > < div style = "max-width:400px;margin:auto" > < div class = "input-icons" > < i class = "fa fa-user icon" ></ i > < input class = "input-field" type = "text" > < i class = "fa fa-instagram icon" ></ i > < input class = "input-field" type = "text" > < i class = "fa fa-envelope icon" ></ i > < input class = "input-field" type = "text" > < i class = "fa fa-youtube icon" ></ i > < input class = "input-field" type = "text" > < i class = "fa fa-facebook icon" ></ i > < input class = "input-field" type = "text" > </ div > </ div > </ body > </ html > |
Output:
Example-2:
<!DOCTYPE html> < html > < head > < link rel = "stylesheet" href = < style > .input-icons i { position: absolute; } .input-icons { width: 100%; margin-bottom: 10px; } .icon { padding: 10px; color: green; min-width: 50px; text-align: center; } .input-field { width: 100%; padding: 10px; text-align: center; } h2 { color: green; } </ style > </ head > < body > < center > < form style = "max-width:450px;margin:auto" > < h2 >GeeksforGeeks</ h2 > < div class = "input-icons" > < i class = "fa fa-user icon" > </ i > < input class = "input-field" type = "text" placeholder = "Username" > </ div > < div class = "input-icons" > < i class = "fa fa-envelope icon" > </ i > < input class = "input-field" type = "text" placeholder = "Email" > </ div > < div class = "input-icons" > < i class = "fa fa-key icon" > </ i > < input class = "input-field" type = "password" placeholder = "Password" > </ div > </ form > </ center > </ body > </ html > |
Output:
Recommended Posts:
- How to enable/disable all input controls inside a form element using jQuery ?
- How to replace dropdown-toggle icon with another default icon in Bootstrap ?
- How to get access to the containing form of an input?
- How to perform click-and-hold operation inside an element using jQuery ?
- HTML | <input> form Attribute
- HTML | DOM Input URL form Property
- HTML | DOM Input Datetime form Property
- HTML | DOM Input Date form Property
- HTML | DOM Input Number form Property
- HTML | DOM Input Text form Property
- HTML | DOM Input FileUpload form Property
- HTML | DOM Input Image form Property
- HTML | DOM Input Range form Property
- HTML | DOM Input Email form Property
- HTML | DOM Input Week form Property
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.