好的,所以我想把这张桌子对齐。表的html看起来像这样。
%table
%tbody{id: "table"}
- @student.module_lists.each do |module_list|
%tr{id: "module_list_#{module_list.id}"}
%td= module_list.title
%td= link_to 'Show', module_list
%td= link_to 'Edit', edit_module_list_path(module_list)
%td= link_to 'Destroy', module_list, :method => :delete, :data => { :confirm => 'Are you sure?' }, :remote => true
我在表中添加了id并使用了这个CSS。
#table{
margin-left: auto;
margin-right: auto;
width: 100px;
}
其他网站似乎对其他网站有效,但我最终在屏幕中间放了一个黑点,而不是桌子。如果我在此表格中添加边框,则边框会绕过屏幕中心的黑点。我不确定这是否是因为表格是链接或什么不是,但任何帮助将不胜感激。感谢。