Inserire immagine dentro campo INPUY





http://www.w3schools.com/css/tryit.asp?filename=trycss_form_icon

<!DOCTYPE html>
<html>
<head>
<style>
input[type=text] {
width: 100%;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-image: url('searchicon.png');
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
}
</style>
</head>
<body>

<p>Input with icon:</p>

<form>
<input type="text" name="search" placeholder="Search..">
</form>

</body>
</html>










( inserireimmaginedentrocampoinpuy.html )- by Paolo Puglisi - Modifica del 17/12/2023