I'm not able to align the label and Ajax Rating Control in a single line.Code is,\[code\]<label class="Informlabel" style="font-size: 13px; font-weight: bold; float: left; width: 100%; overflow: auto; display: block; vertical-align: top;"> Rating :</label><asp:Rating ID="Rating1" runat="server" MaxRating="5" CurrentRating="0" CssClass="ratingStar" StarCssClass="ratingItem" WaitingStarCssClass="Saved" FilledStarCssClass="Filled" EmptyStarCssClass="Empty" AutoPostBack="false"> </asp:Rating>\[/code\]Here is the css of Rating tool\[code\]li { clear:both; margin-bottom:1em; border-bottom:1px solid #eee;}/* ****************** RatingStar ****************** */.ratingStar{ white-space:nowrap; margin:1em; height:17px; vertical-align:top;}.ratingStar .ratingItem { font-size: 0pt; width: 20px; height: 16px; margin: 0px; padding: 0px; display: inline-block; background-repeat: no-repeat; cursorointer;}.ratingStar .Filled { background-image: url(Images/Rating/Selected.gif);}.ratingStar .Empty { background-image: url(Images/Rating/Empty.gif);}.ratingStar .Saved { background-image: url(Images/Rating/Hover.gif);}\[/code\]