我需要创建两个表,将它们附加到页面。
当我只是附加两个表时:
document.getElementById("list").appendChild(list_table_one);
document.getElementById("list").appendChild(list_table_two);
他们把一页放在另一页下面。我怎样才能将它们并排放置?
我需要创建两个表,将它们附加到页面。
当我只是附加两个表时:
document.getElementById("list").appendChild(list_table_one);
document.getElementById("list").appendChild(list_table_two);
他们把一页放在另一页下面。我怎样才能将它们并排放置?
Setting the table's display
property to inline-block
, or float
ing the table to one side should allow them to display side-by-side, assuming they are narrow enough.
table {
display: inline-block;
/* or */
float: left;
}