I have a one-column webpage. Within this fixed-width column I want to have 3 asp:Labels on the same line. The first Label must be left aligned, the center center aligned and the right label right aligned.
How do I mark up these asp:Labels to do what I want? Thanks.
Since the column is fixed width, wrap each label in a div with width explicitly set to 1/3 of the column. All 3 divs must float: left. Then use css to position the labels.
Just replace the divs’ content with your labels.