How do I add a “search” button in a text input field?
问题 How do I create a similar “search” element to the one in this site? If we view source, he has one textbox followed by a <span> tag. <input type="text" name="q" id="site-search-input" autocomplete="off" value="Search" class="gray" /> <span id="g-search-button"></span> Where do I get a similar "magnifying glass" image? 回答1: Put the image into the span, for example using background-image , then give it a relative position and move it to the left so it overlaps the right end of the search box,