Hi team, when you have multiple images and you want to contain it in div how you get the total div width. My understanding is that you sum all image width and you will have the div container width. But that did work for me in vs design environment.

CSS
Code:
#search{background:green;float:left;width:73px;height:34px;}
#logout{background:green;float:left;width:73px;height:34px;}
#web{background:green;float:left;width:72px;height:34px;}
#email{background:green;float:left;width:74px;height:34px;}
#clear{clear:both;}
HTML
Code:
<div style="width:292px; height:34px; float:left;">
<div id="search"><img src="_images/search.jpg"  alt="search" /></div>
<div id="logout"><img src="_images/logout.jpg"  alt="logout" /></div>
<div id="web"><img src="_images/web.jpg"  alt="web" /></div>
<div id="email"><img src="_images/email.jpg"  alt="email" /></div>
<div class="clear"></div>