标签: html css html-table
我有这张桌子: 我应该如何让按钮留在每个桌子行的最右边?
答案 0 :(得分:1)
尝试下面的一个代码:
table td:last-child{ text-align:right; }
,或者
table td:last-child{ float:right; }