Reputation: 5199
I have three buttons inside a td element. Now all the buttons are being aligned vertically. How can I align them horizontally without using nested table.
Upvotes: 0
Views: 263
Reputation: 47532
use div with property float left
<div style="float:left">
button1
</div>
<div style="float:left">
button2
</div>
<div style="float:left">
button3
</div>
Upvotes: 1
Reputation: 3495
Try using unordered list (UL) of list elements (LI) with horizontal alignment.
Here is an example: http://css.maxdesign.com.au/listamatic/horizontal01.htm
Upvotes: 1