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

Winapi c++: DialogBox hangs when breaking a loop -

vb.net - Font adding using PDFsharp -

javascript - jQuery iScroll clickable list elements while retaining scroll? -