html - aligning image next to textbox -


i having difficulty in aligning image next text box. wondering if there easy way other setting padding , margin. because measures can vary in each browsers. have made fiddle http://jsfiddle.net/wd5t9/

<div id='searchwrapper'> <input id='searchbox' style='width:250px; border:1px solid #cccccc; border-radius:7px 7px 7px 7px; padding:5px 28px 5px 10px; margin-top:14px; margin-left:50px;height:18px;' type='text' placeholder='search'/><img src='http://www.q-park.ie/portals/8/images/search-icon.png'/> </div> 

just add css:

#searchwrapper img {     vertical-align: middle; } 

Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -