I was recently writing a lawyer recommendation website, and there was a problem with the search box. I wanted to put the search icon inside the search box, but after a lot of work, I still couldn't get it to work... Without further ado, let's get straight to the point: Basic idea In fact, just put the input box and the icon behind it in a div, then set We directly go to the code: HTML: <div class="search"> <form action="http://baidu.com"> <input type="text" placeholder="Please enter the lawyer or expertise you are looking for"> <span> <a href="#"><img src="img/icon1.png" alt=""></a> </span> </form> </div> CSS: Here is the style for the entire div outside .search { width: 250px; height: 35px; border: 1px solid white; border-radius: 30px; } Here is to set the length and width of the input box, the frame is 0px, the font size inside, and the border will not light up when clicked (outline:none) input { width: 200px; height: 35px; border: 0; font-size: 14px; outline: none; background-color: rgba(255, 255, 255, 0); color: white; font-size: 16px; margin: 0 10px; Summarize This is the end of this article about the implementation code of adding icons in HTML transparent input box. For more relevant html transparent input box icon content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: Detailed explanation of how to use $props, $attrs and $listeners in Vue
>>: CentOS 7 cannot access the Internet after modifying the network card
Deploy database based on docker sudo docker pull ...
1. Usage of instanceof instanceof operator is use...
Preface There are 4 types of operators in MySQL, ...
Generally, the colspan attribute of the <td>...
Large Text Data Types in Oracle Clob long text ty...
This article shares the specific code for JavaScr...
Swap space is a common aspect of computing today,...
1. Text around the image If we use the normal one...
Table of contents 1. Drag effect example 2. CSS I...
Notice! ! ! select * from user where uid not in (...
Look at the code first #/bin/sh datename=$(date +...
Edit docker-compose.yml and add the following con...
The first and most important step is how to insta...
Table of contents 1. Switch between production en...
This article shares the Java connection MySQL und...