I am doing first site using html5 and css3. To display text box with search glass image I found this help and it works good like:

Here is the code:
HTML
<form id="header-search">
<input type="text" class="searchbox" /><input type="submit" class="button" value="" />
CSS
#header-search{overflow:auto;}
#header-search input.searchbox {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border:1px solid #8e8e8e;
background-color:#f5f5f5;
height:16px;
padding:4px;
padding-right:28px;
color:#4a4a4a;
float:left;
}
#header-search input.button{
border:0;
padding:0;
margin:0 0 0 -24px;
width:24px;
height:24px;
background:transparent url('your-search-icon-path-here') center center no-repeat;
float:left;
}
I need to show search image on right side of text box I tried to understand the CSS but I couldn't get it.
Can you please guide me what is grouping image inside text box. How its display and positioning is being control as there was no property with display in CSS code ?
How I can change its display from left side of text box ?
Thanks
type="search"instead oftype="text". (But doesn't relates to your question) – matthias.p Aug 18 '12 at 12:26