我打算将图像添加到输入字段中,因此如果您单击该图像,则输入字段中的文本将清晰可见。
我打算使用绝对定位。我的问题是哪个 html 标签最适合这种情况?
这是我使用的代码。
<DOCTYPE html>
<head>
<title></title>
<style>
#search_form {
width: 380px;
height: 110px;
position: relative;
background: -webkit-gradient(linear, left top, left bottom, from(#43689a), to(#6399e7));
}
#search_form input {
width: 300px;
height: 30px;
border-radius: 18px;
border: 1px solid #ccc;
margin-left: 70px;
margin-top: 40px;
padding-left: 36px;
}
#search_form input:focus {
outline: none;
}
#search_form button {
position: absolute;
width: 16px;
height: 16px;
background: url(f.png) no-repeat 50% 50%;
border: 0;
top: 47px;
left: 85px;
cursor: hand;
text-indent: -9999px;
}
</style>
</head>
<body>
<div id="search_form">
<form>
<input type="text" placeholder="Search....">
<button>Submit</button>
</form>
</div>
</body>
</html>