Reputation: 698
I have 4 aspxgridlookup controls in a page. Each of them makes a new line at the end of them, because their are in tables by default. Then I could not put all of them in a single line in the page(displaying elements inline). Is there any solution for putting aspxgridlookup controls in a single line?
Thanks.
Upvotes: 1
Views: 252
Reputation: 698
I used css to solve my problem.
display: inline-block;
vertical-align: top;
margin-left:2px;
Upvotes: 1