我应该如何在桌子右侧取下这些按钮?

时间:2015-12-26 13:47:27

标签: html css html-table

我有这张桌子: enter image description here 我应该如何让按钮留在每个桌子行的最右边?

1 个答案:

答案 0 :(得分:1)

尝试下面的一个代码:

table td:last-child{
text-align:right;
}

,或者

table td:last-child{
float:right;
}